Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
      4                 android:id="@android:id/content"
      5                 android:layout_width="match_parent"
      6                 android:layout_height="wrap_content"
      7                 android:background="?android:attr/selectableItemBackground">
      8     <ImageButton
      9             android:id="@android:id/icon"
     10             android:layout_width="wrap_content"
     11             android:layout_height="wrap_content"
     12             android:layout_centerVertical="true"
     13             android:layout_alignParentEnd="true"
     14             android:background="@null"
     15             android:src="@drawable/ic_launcher"/>
     16     <TextView
     17             android:id="@android:id/text1"
     18             android:layout_width="wrap_content"
     19             android:layout_height="wrap_content"
     20             android:layout_alignParentTop="true"
     21             android:layout_alignParentStart="true"
     22             android:layout_toStartOf="@android:id/icon"
     23             android:text="Click to collect 100 bucks"/>
     24 
     25     <TextView
     26             android:id="@android:id/text2"
     27             android:layout_width="wrap_content"
     28             android:layout_height="wrap_content"
     29             android:layout_below="@android:id/text1"
     30             android:layout_alignParentStart="true"
     31             android:layout_toStartOf="@android:id/icon"
     32             android:text="Click"/>
     33 </RelativeLayout>