Statistics
| Branch: | Revision:

root / res / layout / listservercell.xml @ 35e7942d

History | View | Annotate | Download (1.5 kB)

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
3
    android:orientation="horizontal"
4
    android:layout_width="fill_parent"
5
    android:layout_height="64dip"
6
    >
7
    <ImageView android:id="@+id/icon"
8
        android:layout_width="37px"
9
        android:paddingLeft="0px"
10
        android:paddingRight="0px"
11
        android:paddingTop="0px"
12
        android:layout_marginRight="10px"
13
        android:layout_marginLeft="10px"
14
        android:layout_marginTop="13px"
15
        android:layout_height="37px"
16
        android:src="@drawable/ubuntu_icon" />
17
        
18
    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
19
        android:orientation="vertical"
20
        android:layout_width="fill_parent"
21
        android:layout_height="fill_parent">
22
    
23
        <TableRow>
24
                    <TextView android:id="@+id/label"
25
                        android:layout_width="wrap_content"
26
                        android:layout_height="wrap_content"
27
                        android:layout_marginTop="5px"
28
                        android:textColor="#FFFFFF"
29
                        android:textSize="24sp" />
30
        </TableRow>
31
        
32
        <TableRow>
33
                    <TextView android:id="@+id/sublabel"
34
                        android:layout_width="wrap_content"
35
                        android:layout_height="wrap_content"
36
                        android:layout_marginTop="0px"
37
                        android:textColor="#FFFFFF"
38
                        android:text="256 server - CentOS 5.3"
39
                        android:textSize="12sp" />
40
        </TableRow>
41
    </TableLayout>
42
        
43
        
44
</LinearLayout>