summaryrefslogtreecommitdiff
path: root/src/plugins/android.codeutils/templates/activity_samples/endless_list_usingfragment/listrow.xml
blob: 0009dc933e2c433291bebece98db1433f933eded (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/vw01"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">    

    <ImageView android:id="@+id/img01"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:padding="5dip"/>

    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
	    android:id="@+id/text01"
	    android:layout_width="match_parent"
	    android:layout_height="wrap_content"
	    android:textAppearance="?android:attr/textAppearanceLarge"
	    android:gravity="center_vertical"
	    android:paddingLeft="6dip"
	    android:minHeight="?android:attr/listPreferredItemHeight"
/>        
</LinearLayout>