Statistics
| Branch: | Revision:

root / res / layout / groupsrow.xml @ 856ad13d

History | View | Annotate | Download (1.2 kB)

1
<?xml version="1.0" encoding="utf-8"?>
2
<RelativeLayout
3
    xmlns:android="http://schemas.android.com/apk/res/android"
4
    android:layout_width="fill_parent"
5
    android:layout_height="wrap_content"
6
    android:orientation="horizontal"
7
        android:paddingLeft="20dip"
8
        
9
    >
10
<LinearLayout
11
        xmlns:android="http://schemas.android.com/apk/res/android"
12
        android:id="@+id/batch_button_area"
13
        android:layout_width="fill_parent"
14
        android:layout_height="wrap_content"
15
        android:orientation="horizontal"
16
        android:paddingLeft="10dip"
17
        android:paddingTop="3dip"
18
        android:paddingBottom="3dip"
19
        >
20
    <ImageView
21
        android:id="@+id/image"
22
        android:layout_width="24dip"
23
                android:layout_height="24dip"
24
                android:scaleType="fitXY"
25
                android:gravity="center|center"
26
                android:layout_marginLeft="5dip"
27
                android:layout_marginTop="5dip"/>
28

    
29
    <TextView
30
        android:id="@+id/name"
31
        android:layout_width="wrap_content"
32
        android:layout_height="wrap_content"
33
        android:layout_gravity="right|center_vertical" 
34
        android:layout_marginLeft="5dip"
35
        />
36
</LinearLayout>
37
</RelativeLayout>