Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
      3     android:id="@+id/trusted_devices_prompt_layout"
      4     android:layout_width="match_parent"
      5     android:layout_height="match_parent"
      6     android:background="#FF80CBC4" >
      7 
      8     <RelativeLayout
      9         android:layout_width="match_parent"
     10         android:layout_height="match_parent" >
     11 
     12         <LinearLayout
     13             android:layout_width="match_parent"
     14             android:layout_height="200dp"
     15             android:background="#FFB2DFDB" >
     16         </LinearLayout>
     17 
     18         <LinearLayout
     19             android:id="@+id/nfc_how_it_works_image_text"
     20             android:layout_width="match_parent"
     21             android:layout_height="match_parent"
     22             android:paddingLeft="16dp"
     23             android:paddingRight="16dp"
     24             android:paddingTop="72dp"
     25             android:orientation="vertical">
     26 
     27           <ImageView
     28               android:id="@+id/nfc_how_it_works_image"
     29               android:layout_width="match_parent"
     30               android:layout_height="188dp"
     31               android:gravity="center"
     32               android:src="@drawable/nfc_how_it_works" />
     33 
     34           <TextView
     35               android:id="@+id/nfc_how_it_works_title"
     36               android:layout_width="match_parent"
     37               android:layout_height="wrap_content"
     38               android:text="@string/nfc_how_it_works_title"
     39               android:paddingLeft="16dp"
     40               android:paddingRight="16dp"
     41               android:textColor="#FF263238"
     42               android:textSize="24sp" />
     43 
     44           <TextView
     45               android:id="@+id/nfc_how_it_works_content"
     46               android:layout_width="match_parent"
     47               android:layout_height="wrap_content"
     48               android:paddingTop="10dp"
     49               android:paddingBottom="18dp"
     50               android:paddingLeft="16dp"
     51               android:paddingRight="16dp"
     52               android:text="@string/nfc_how_it_works_content"
     53               android:textColor="#FF263238"
     54               android:textSize="16sp" />
     55         </LinearLayout>
     56         <RelativeLayout
     57             android:layout_width="match_parent"
     58             android:layout_height="48dp"
     59             android:layout_alignParentBottom="true"
     60             android:background="#FFB2DFDB" >
     61           <Button
     62               android:id="@+id/nfc_how_it_works_button"
     63               android:background="?android:attr/selectableItemBackground"
     64               android:layout_alignParentRight="true"
     65               android:layout_width="wrap_content"
     66               android:layout_height="48dp"
     67               android:layout_marginRight="20dp"
     68               android:text="@string/nfc_how_it_works_got_it"
     69               android:textSize="14sp"
     70               android:textColor="#263238"
     71               style="?android:attr/borderlessButtonStyle" />
     72         </RelativeLayout>
     73     </RelativeLayout>
     74 </FrameLayout>
     75