OLD | NEW |
---|---|
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
3 <RelativeLayout | 3 <RelativeLayout |
4 xmlns:android="http://schemas.android.com/apk/res/android" | 4 xmlns:android="http://schemas.android.com/apk/res/android" |
5 xmlns:tools="http://schemas.android.com/tools" | 5 xmlns:tools="http://schemas.android.com/tools" |
6 android:layout_width="match_parent" | 6 android:layout_width="match_parent" |
7 android:layout_height="match_parent"> | 7 android:layout_height="match_parent"> |
8 | 8 |
9 <TextView | 9 <TextView |
10 android:id="@+id/contact_name_call" | 10 android:id="@+id/contact_name_call" |
(...skipping 29 matching lines...) Expand all Loading... | |
40 android:layout_marginEnd="8dp" | 40 android:layout_marginEnd="8dp" |
41 android:layout_width="48dp" | 41 android:layout_width="48dp" |
42 android:layout_height="48dp"/> | 42 android:layout_height="48dp"/> |
43 | 43 |
44 <ImageButton | 44 <ImageButton |
45 android:id="@+id/button_call_scaling_mode" | 45 android:id="@+id/button_call_scaling_mode" |
46 android:background="@drawable/ic_action_return_from_full_screen" | 46 android:background="@drawable/ic_action_return_from_full_screen" |
47 android:contentDescription="@string/disconnect_call" | 47 android:contentDescription="@string/disconnect_call" |
48 android:layout_width="48dp" | 48 android:layout_width="48dp" |
49 android:layout_height="48dp"/> | 49 android:layout_height="48dp"/> |
50 | |
51 <ImageButton | |
52 android:id="@+id/button_call_toggle_mic" | |
53 android:background="@android:drawable/ic_btn_speak_now" | |
54 android:contentDescription="@string/switch_camera" | |
AlexG
2016/03/22 16:49:20
nit: Add new content description string for mic mu
the sun
2016/03/23 08:25:44
Oops, thanks. Done.
| |
55 android:layout_marginEnd="8dp" | |
56 android:layout_width="48dp" | |
57 android:layout_height="48dp"/> | |
50 </LinearLayout> | 58 </LinearLayout> |
51 | 59 |
52 <TextView | 60 <TextView |
53 android:id="@+id/capture_format_text_call" | 61 android:id="@+id/capture_format_text_call" |
54 android:layout_width="wrap_content" | 62 android:layout_width="wrap_content" |
55 android:layout_height="wrap_content" | 63 android:layout_height="wrap_content" |
56 android:layout_centerHorizontal="true" | 64 android:layout_centerHorizontal="true" |
57 android:layout_above="@+id/capture_format_slider_call" | 65 android:layout_above="@+id/capture_format_slider_call" |
58 android:textSize="16sp" | 66 android:textSize="16sp" |
59 android:text="Slide to change capture format"/> | 67 android:text="Slide to change capture format"/> |
60 | 68 |
61 <SeekBar | 69 <SeekBar |
62 android:id="@+id/capture_format_slider_call" | 70 android:id="@+id/capture_format_slider_call" |
63 android:layout_width="match_parent" | 71 android:layout_width="match_parent" |
64 android:layout_height="wrap_content" | 72 android:layout_height="wrap_content" |
65 android:layout_centerHorizontal="true" | 73 android:layout_centerHorizontal="true" |
66 android:layout_alignParentBottom="true" | 74 android:layout_alignParentBottom="true" |
67 android:progress="50" | 75 android:progress="50" |
68 android:layout_margin="8dp"/> | 76 android:layout_margin="8dp"/> |
69 | 77 |
70 </RelativeLayout> | 78 </RelativeLayout> |
OLD | NEW |