47
|
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="50sp"
|
|
6 |
android:gravity="center_vertical" >
|
|
7 |
|
|
8 |
<ImageView android:id="@+id/avatar"
|
|
9 |
android:layout_width="70px"
|
|
10 |
android:layout_height="40sp" />
|
|
11 |
<LinearLayout
|
|
12 |
android:orientation="vertical"
|
|
13 |
android:layout_width="fill_parent"
|
|
14 |
android:layout_height="40sp">
|
|
15 |
|
|
16 |
<TextView android:id="@+id/textchild1"
|
|
17 |
android:layout_width="fill_parent"
|
|
18 |
android:layout_height="wrap_content"
|
|
19 |
android:paddingLeft="20sp" />
|
|
20 |
|
|
21 |
<TextView android:id="@+id/textchild2"
|
|
22 |
android:layout_width="fill_parent"
|
|
23 |
android:layout_height="wrap_content" />
|
|
24 |
</LinearLayout>
|
|
25 |
|
|
26 |
</LinearLayout> |