equal
deleted
inserted
replaced
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
3 android:layout_width="wrap_content" android:layout_height="wrap_content" |
|
4 > |
|
5 <TextView android:id="@+id/title" |
|
6 android:layout_width="fill_parent" android:layout_height="wrap_content" |
|
7 android:layout_alignParentTop="true" |
|
8 android:text="TITLE" /> |
|
9 <View android:id="@+id/separator" android:layout_width="match_parent" android:layout_height="4dp"/> |
|
10 |
|
11 <ProgressBar android:id="@+id/progress" |
|
12 android:layout_width="wrap_content" android:layout_height="wrap_content" |
|
13 android:layout_below="@+id/separator" |
|
14 android:layout_alignParentLeft="true" |
|
15 android:indeterminateOnly="true" android:indeterminate="true" android:indeterminateBehavior="repeat"/> |
|
16 <TextView android:id="@+id/message" |
|
17 android:layout_width="wrap_content" android:layout_height="wrap_content" |
|
18 android:layout_below="@+id/separator" |
|
19 android:layout_toRightOf="@id/progress" |
|
20 android:text="TITLECONTENT"/> |
|
21 </RelativeLayout> |
|