-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 2.0.3 (as published in Google Play)
• Austrian e-purse "Quick" logs (only for Austria) • experimental support for VISA logs • added more currency codes
- Loading branch information
Showing
22 changed files
with
1,053 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,185 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:background="@color/background_list_views" > | ||
|
||
<TextView | ||
android:id="@+id/txListItemTimestamp" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentLeft="true" | ||
android:layout_alignTop="@+id/txListItemAmount" | ||
android:layout_marginLeft="8dp" | ||
android:layout_marginRight="3dp" | ||
android:layout_marginTop="8dp" | ||
android:maxLines="1" | ||
android:text="23.12.2013 07:12:23" | ||
android:textAppearance="@style/TransactionListTimestamp" /> | ||
|
||
<TextView | ||
android:id="@+id/txListItemAmount" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentTop="true" | ||
android:layout_marginRight="5dp" | ||
android:layout_marginTop="8dp" | ||
android:layout_toLeftOf="@+id/imageViewCollapseIcon" | ||
android:maxLines="1" | ||
android:text="-xxxxx,xx €" | ||
android:textAppearance="@style/TransactionListAmount" /> | ||
|
||
<ImageView | ||
android:id="@+id/imageViewCollapseIcon" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentRight="true" | ||
android:layout_alignTop="@+id/txListItemAmount" | ||
android:layout_marginRight="8dp" | ||
android:contentDescription="@string/tx_list_image_description_collapse_icon" | ||
android:src="@drawable/ic_action_collapse" /> | ||
|
||
<RelativeLayout | ||
android:id="@+id/layoutFrameDetails" | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:layout_below="@+id/txListItemAmount" | ||
android:paddingTop="12dp" | ||
android:paddingLeft="8dp" | ||
android:paddingRight="8dp" | ||
android:paddingBottom="8dp" | ||
android:layout_marginTop="8dp" | ||
android:layout_marginLeft="15dp" | ||
android:layout_marginRight="15dp" | ||
> | ||
<!--android:background="#E9FFE9" #E0ECFF --> | ||
|
||
<TextView | ||
android:id="@+id/txListItemATCLabel" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentLeft="true" | ||
android:layout_marginRight="8dp" | ||
android:layout_marginTop="4dp" | ||
android:maxLines="1" | ||
android:text="@string/tx_list_atc_label" | ||
android:textAppearance="@style/TransactionListDetailDataLabel" /> | ||
|
||
<TextView | ||
android:id="@+id/txListItemATC" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_below="@+id/txListItemATCLabel" | ||
android:layout_alignParentLeft="true" | ||
android:layout_marginLeft="24dp" | ||
android:layout_marginRight="8dp" | ||
android:maxLines="1" | ||
android:text="65536" | ||
android:textAppearance="@style/TransactionListDetailData" /> | ||
|
||
|
||
|
||
<TextView | ||
android:id="@+id/txListRemainingBalanceLabel" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentLeft="true" | ||
android:layout_below="@+id/txListItemATC" | ||
android:layout_marginRight="3dp" | ||
android:layout_marginTop="4dp" | ||
android:text="@string/tx_list_remaining_balance" | ||
android:textAppearance="@style/TransactionListDetailDataLabel" /> | ||
|
||
<TextView | ||
android:id="@+id/txListItemRemainingBalance" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_below="@+id/txListRemainingBalanceLabel" | ||
android:layout_alignParentLeft="true" | ||
android:layout_marginLeft="24dp" | ||
android:layout_marginRight="8dp" | ||
android:maxLines="1" | ||
android:text="23,34 €" | ||
android:textAppearance="@style/TransactionListDetailData" /> | ||
|
||
|
||
|
||
<TextView | ||
android:id="@+id/txListItemTerminInfoLabel" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentLeft="true" | ||
android:layout_below="@+id/txListItemRemainingBalance" | ||
android:layout_marginRight="8dp" | ||
android:layout_marginTop="4dp" | ||
android:maxLines="1" | ||
android:text="@string/tx_list_terminfo_label" | ||
android:textAppearance="@style/TransactionListDetailDataLabel" /> | ||
|
||
<TextView | ||
android:id="@+id/txListItemTermInfo" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_below="@+id/txListItemTerminInfoLabel" | ||
android:layout_alignParentLeft="true" | ||
android:layout_marginLeft="24dp" | ||
android:layout_marginRight="8dp" | ||
android:maxLines="1" | ||
android:text="01" | ||
android:textAppearance="@style/TransactionListDetailData" /> | ||
|
||
|
||
|
||
|
||
|
||
<TextView | ||
android:id="@+id/txListItemUnknownByteLabel" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_alignParentLeft="true" | ||
android:layout_below="@+id/txListItemTermInfo" | ||
android:layout_marginRight="8dp" | ||
android:layout_marginTop="4dp" | ||
android:maxLines="1" | ||
android:text="@string/tx_list_unknown_byte_label" | ||
android:textAppearance="@style/TransactionListDetailDataLabel" /> | ||
|
||
<TextView | ||
android:id="@+id/txListItemUnknownByte" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_below="@+id/txListItemUnknownByteLabel" | ||
android:layout_alignParentLeft="true" | ||
android:layout_marginLeft="24dp" | ||
android:layout_marginRight="8dp" | ||
android:maxLines="1" | ||
android:text="01" | ||
android:textAppearance="@style/TransactionListDetailData" /> | ||
</RelativeLayout> | ||
|
||
<TextView | ||
android:id="@+id/txListRawData" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_below="@+id/layoutFrameDetails" | ||
android:layout_marginBottom="0dp" | ||
android:layout_marginLeft="15dp" | ||
android:layout_marginRight="15dp" | ||
android:layout_marginTop="10dp" | ||
android:background="#666666" | ||
android:padding="10dp" | ||
android:text="00 22 33 44 55 66 77 88 99 AA BB CC DD EE FF EE 00 00 22 33 44 55 66 77 88 99 AA BB CC DD EE FF EE 00 00 22 33 44 55 66 77 88 99 AA BB CC DD EE FF EE 00 00 22 33 44 55 66 77 88 99 AA BB CC DD EE FF EE 00 00 22 33 44 55 66 77 88 99 AA BB CC DD EE FF EE 00" | ||
android:textAppearance="@style/TransactionListHexData" /> | ||
|
||
<TextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="15dp" | ||
android:layout_below="@+id/txListRawData" | ||
android:layout_alignParentLeft="true" | ||
android:layout_centerVertical="true" | ||
android:text="" | ||
android:visibility="invisible" /> | ||
|
||
|
||
|
||
</RelativeLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.