OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
3 android:layout_width="fill_parent" | 3 android:layout_width="fill_parent" |
4 android:layout_height="fill_parent" | 4 android:layout_height="fill_parent" |
5 android:orientation="vertical" > | 5 android:orientation="vertical" > |
6 | 6 |
7 <TextView | 7 <LinearLayout |
8 android:id="@+id/txt_configuration" | 8 android:id="@+id/grp_configuration" |
9 style="@style/MessageText" | 9 style="@style/MessageText" |
10 android:layout_width="fill_parent" | 10 android:layout_width="fill_parent" |
11 android:layout_height="wrap_content" | 11 android:layout_height="wrap_content" |
12 android:visibility="gone" /> | 12 android:orientation="horizontal" |
| 13 android:visibility="gone" > |
| 14 |
| 15 <TextView |
| 16 android:id="@+id/txt_configuration" |
| 17 android:layout_width="fill_parent" |
| 18 android:layout_height="wrap_content" |
| 19 android:layout_weight="1" /> |
| 20 |
| 21 <Button |
| 22 android:id="@+id/btn_configuration" |
| 23 android:layout_width="wrap_content" |
| 24 android:layout_height="wrap_content" |
| 25 android:layout_gravity="center_vertical|right" |
| 26 android:layout_weight="0" |
| 27 android:onClick="showProxySettings" |
| 28 android:text="@string/showme" /> |
| 29 </LinearLayout> |
13 | 30 |
14 <ListView | 31 <ListView |
15 android:id="@android:id/list" | 32 android:id="@android:id/list" |
16 android:layout_width="fill_parent" | 33 android:layout_width="fill_parent" |
17 android:layout_height="fill_parent" | 34 android:layout_height="fill_parent" |
18 android:drawSelectorOnTop="false" | 35 android:drawSelectorOnTop="false" |
19 android:scrollbarAlwaysDrawVerticalTrack="true" /> | 36 android:scrollbarAlwaysDrawVerticalTrack="true" /> |
20 | 37 |
21 </LinearLayout> | 38 </LinearLayout> |
OLD | NEW |