| 1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
- <ImageView
- android:id="@+id/iv_thumb"
- android:layout_width="60dp"
- android:layout_height="60dp"
- android:layout_alignParentLeft="true"
- android:layout_alignParentTop="true"
- android:src="@drawable/ic_launcher" />
- <TextView
- android:id="@+id/tv_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentTop="true"
- android:layout_marginLeft="24dp"
- android:layout_toRightOf="@+id/iv_thumb"
- android:text="Medium Text"
- android:textAppearance="?android:attr/textAppearanceMedium" />
- <TextView
- android:id="@+id/tv_content"
- android:layout_width="fill_parent"
- android:layout_height="35dp"
- android:layout_alignLeft="@+id/tv_title"
- android:layout_below="@+id/tv_title"
- android:text="TextView" />
- </RelativeLayout>
|