OSDN Git Service

Initial commit
[worldopac/WorldOpac.git] / WorldOpac / res / layout / listitem_account.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     android:id="@+id/rlItem"
4     android:layout_width="match_parent"
5     android:layout_height="match_parent"
6     android:orientation="vertical"
7     android:padding="8dp" >
8
9     <TextView
10         android:id="@+id/tvLabel"
11         android:layout_width="wrap_content"
12         android:layout_height="wrap_content"
13         android:textAppearance="?android:attr/textAppearanceMedium" />
14
15     <LinearLayout
16         android:layout_width="match_parent"
17         android:layout_height="wrap_content"
18         android:layout_below="@id/tvLabel" >
19
20         <TextView
21             android:id="@+id/tvCity"
22             android:layout_width="match_parent"
23             android:layout_height="wrap_content"
24             android:layout_weight="1"
25             android:textAppearance="?android:attr/textAppearanceSmall" />
26
27         <TextView
28             android:id="@+id/tvName"
29             android:layout_width="match_parent"
30             android:layout_height="wrap_content"
31             android:layout_weight="1"
32             android:textAppearance="?android:attr/textAppearanceSmall" />
33     </LinearLayout>
34
35 </RelativeLayout>