summaryrefslogtreecommitdiffstats
path: root/res/layout/nfc_payment.xml
blob: d6f9fa44f999ce4c764d3b1e5ba457314bd7ee46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center_vertical"
        android:orientation="vertical" >
        <ImageView
            android:id="@+id/nfc_payment_tap_image"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:visibility="gone"
            android:src="@drawable/nfc_payment_empty_state"/>
        <TextView
            android:id="@+id/nfc_payment_empty_text"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:textSize="24sp"
            android:visibility="gone"
            android:paddingTop="16dp"
            android:text="@string/nfc_payment_no_apps"/>
        <TextView
            android:id="@+id/nfc_payment_learn_more"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:clickable="true"
            android:textSize="20sp"
            android:textStyle="italic"
            android:visibility="gone"
            android:textColor="@android:color/holo_blue_light"
            android:paddingTop="16dp"
            android:text="@string/nfc_payment_learn_more"/>
    </LinearLayout>
    <ListView
        android:id="@android:id/list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="5dp" />

</FrameLayout>