summaryrefslogtreecommitdiff
path: root/src/plugins/android.codeutils/templates/activity_samples/img_text_list/listrow.xml
blob: 7bb9825598e6d62c43a7472f7139dd4d9352cd3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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="wrap_content"
        android:padding="5dip"/>

    <TextView android:id="@+id/text01"
        android:textStyle="bold"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center_vertical"
        android:paddingLeft="10dip"/>
        
</LinearLayout>