OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <LinearLayout | 2 <LinearLayout |
3 xmlns:android="http://schemas.android.com/apk/res/android" | 3 xmlns:android="http://schemas.android.com/apk/res/android" |
4 android:layout_margin="16dp" | 4 android:layout_margin="16dp" |
5 android:layout_width="match_parent" | 5 android:layout_width="match_parent" |
6 android:layout_height="match_parent" | 6 android:layout_height="match_parent" |
7 android:orientation="vertical" | 7 android:orientation="vertical" |
8 android:weightSum="1" | 8 android:weightSum="1" |
9 android:layout_centerHorizontal="true"> | 9 android:layout_centerHorizontal="true"> |
10 | 10 |
11 <TextView | 11 <TextView |
12 android:id="@+id/room_edittext_description" | 12 android:id="@+id/room_edittext_description" |
13 android:layout_width="match_parent" | 13 android:layout_width="match_parent" |
14 android:layout_height="wrap_content" | 14 android:layout_height="wrap_content" |
15 android:text="@string/room_description"/> | 15 android:text="@string/room_description"/> |
16 | 16 |
17 <LinearLayout | 17 <LinearLayout |
18 android:orientation="horizontal" | 18 android:orientation="horizontal" |
19 android:layout_width="match_parent" | 19 android:layout_width="match_parent" |
20 android:layout_height="wrap_content" | 20 android:layout_height="wrap_content" |
21 android:gravity="center" | 21 android:gravity="center" |
22 android:layout_marginBottom="8dp"> | 22 android:layout_marginBottom="8dp"> |
23 | 23 |
24 <EditText | 24 <EditText |
25 android:id="@+id/room_edittext" | 25 android:id="@+id/room_edittext" |
26 android:layout_width="0dp" | 26 android:layout_width="0dp" |
27 android:layout_height="wrap_content" | 27 android:layout_height="wrap_content" |
28 android:layout_weight="1" | 28 android:layout_weight="1" |
29 android:singleLine="true" | 29 android:maxLines="1" |
30 android:imeOptions="actionDone" | 30 android:imeOptions="actionDone" |
31 android:inputType="text"/> | 31 android:inputType="text"/> |
32 | 32 |
33 <ImageButton | 33 <ImageButton |
34 android:id="@+id/connect_button" | 34 android:id="@+id/connect_button" |
35 android:layout_width="48dp" | 35 android:layout_width="48dp" |
36 android:layout_height="48dp" | 36 android:layout_height="48dp" |
37 android:contentDescription="@string/connect_description" | 37 android:contentDescription="@string/connect_description" |
38 android:background="@android:drawable/sym_action_call" /> | 38 android:background="@android:drawable/sym_action_call" /> |
39 | 39 |
(...skipping 27 matching lines...) Expand all Loading... |
67 android:layout_height="match_parent" | 67 android:layout_height="match_parent" |
68 android:drawSelectorOnTop="false" /> | 68 android:drawSelectorOnTop="false" /> |
69 | 69 |
70 <TextView | 70 <TextView |
71 android:id="@android:id/empty" | 71 android:id="@android:id/empty" |
72 android:layout_width="match_parent" | 72 android:layout_width="match_parent" |
73 android:layout_height="match_parent" | 73 android:layout_height="match_parent" |
74 android:gravity="center" | 74 android:gravity="center" |
75 android:text="@string/no_favorites" /> | 75 android:text="@string/no_favorites" /> |
76 </FrameLayout> | 76 </FrameLayout> |
77 </LinearLayout> | 77 </LinearLayout> |
OLD | NEW |