
All the code from the activity and the fragments has been successfully ported to the SwapWorkflowActivity + Views. Thus, the code is no longer useful, as it was only kept over the previous WIP commits so that it can be referred to to help re-implement fragments with views.
35 lines
1.4 KiB
XML
35 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<org.fdroid.fdroid.views.swap.NfcView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/swap_blue"
|
|
android:paddingTop="38.8dp"> <!-- 69px * 96dpi / 160dpi -->
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/icon_nfc"
|
|
android:src="@drawable/nfc_touch"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_centerHorizontal="true"/>
|
|
|
|
<TextView
|
|
android:id="@+id/text_description"
|
|
android:text="@string/swap_nfc_description"
|
|
style="@style/SwapTheme.Wizard.MainText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/icon_nfc" />
|
|
|
|
<CheckBox
|
|
android:id="@+id/checkbox_dont_show"
|
|
android:text="@string/swap_dont_show_again"
|
|
style="@style/SwapTheme.Wizard.Text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/text_description"
|
|
android:layout_centerHorizontal="true"/>
|
|
|
|
</org.fdroid.fdroid.views.swap.NfcView> |