| OLD | NEW |
| (Empty) |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| 3 android:layout_width="fill_parent" | |
| 4 android:layout_height="fill_parent" | |
| 5 android:layout_gravity="right" | |
| 6 android:orientation="vertical"> | |
| 7 <TextView android:layout_width="wrap_content" | |
| 8 android:layout_height="wrap_content" | |
| 9 android:textStyle="bold" | |
| 10 android:textSize="24dip" | |
| 11 android:text="@string/gSettings"> | |
| 12 </TextView> | |
| 13 <LinearLayout android:orientation="horizontal" | |
| 14 android:layout_height="wrap_content" | |
| 15 android:layout_width="fill_parent"> | |
| 16 <CheckBox android:id="@+id/cbAudio" | |
| 17 android:layout_width="wrap_content" | |
| 18 android:layout_height="wrap_content" | |
| 19 android:text="@string/enableAudio"> | |
| 20 </CheckBox> | |
| 21 <CheckBox android:id="@+id/cbLoopback" | |
| 22 android:layout_width="wrap_content" | |
| 23 android:layout_height="wrap_content" | |
| 24 android:text="@string/loopback"> | |
| 25 </CheckBox> | |
| 26 </LinearLayout> | |
| 27 <TextView android:layout_width="wrap_content" | |
| 28 android:layout_height="wrap_content" | |
| 29 android:text="@string/remoteIp"> | |
| 30 </TextView> | |
| 31 <EditText android:id="@+id/etRemoteIp" | |
| 32 android:layout_height="wrap_content" | |
| 33 android:layout_width="fill_parent" | |
| 34 android:imeOptions="actionDone"> | |
| 35 </EditText> | |
| 36 </LinearLayout> | |
| OLD | NEW |