aaca69bf |
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="fill_parent" |
6 | android:padding="3dp" |
7 | > |
8 | |
9 | <ImageView |
10 | android:id="@+id/image" |
11 | android:layout_width="wrap_content" |
12 | android:layout_height="fill_parent" |
13 | android:layout_marginRight="10dp" |
14 | /> |
15 | |
16 | <LinearLayout |
17 | android:orientation="vertical" |
18 | android:layout_width="fill_parent" |
19 | android:layout_height="wrap_content" |
20 | > |
21 | <TextView |
22 | android:id="@+id/headline" |
23 | android:layout_width="fill_parent" |
24 | android:layout_height="wrap_content" |
25 | android:textStyle="bold" |
26 | /> |
27 | <ProgressBar |
28 | android:id="@+id/status" |
29 | android:layout_width="fill_parent" |
30 | android:layout_height="wrap_content" |
31 | style="?android:attr/progressBarStyleHorizontal" |
32 | /> |
33 | |
34 | </LinearLayout> |
35 | </LinearLayout> |