list_item.xml 752 字节
Newer Older
K
kevinkong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >

    <RadioButton
        android:id="@+id/rb"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <ImageView
        android:id="@+id/image"
A
andrewleo 已提交
14 15 16
        android:layout_width="60px"
        android:layout_height="60px"
        android:layout_gravity="center"
K
kevinkong 已提交
17 18 19 20 21 22 23 24
        android:layout_marginRight="10dip" />

    <TextView
        android:id="@+id/text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />

</LinearLayout>