2014-08-19 15:37:44 +09:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2015-05-25 16:02:41 +10:00
|
|
|
<org.fdroid.fdroid.views.swap.NfcView xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-04-07 11:43:07 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-05-23 01:25:06 +10:00
|
|
|
android:background="@color/swap_blue"
|
2015-04-07 11:43:07 +02:00
|
|
|
android:paddingTop="38.8dp"> <!-- 69px * 96dpi / 160dpi -->
|
2014-08-19 15:37:44 +09:30
|
|
|
|
|
|
|
<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"
|
2015-04-14 16:53:48 -04:00
|
|
|
android:text="@string/swap_dont_show_again"
|
2015-05-23 01:25:06 +10:00
|
|
|
style="@style/SwapTheme.Wizard.Text"
|
2014-08-19 15:37:44 +09:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/text_description"
|
|
|
|
android:layout_centerHorizontal="true"/>
|
|
|
|
|
2015-05-25 16:02:41 +10:00
|
|
|
</org.fdroid.fdroid.views.swap.NfcView>
|