Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(707)

Side by Side Diff: webrtc/examples/androidapp/res/layout/fragment_call.xml

Issue 1820113003: Add Mic Toggle button to AppRTCDemo (Android). (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Addressed comment Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/examples/androidapp/res/values/strings.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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/toggle_mic"
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>
OLDNEW
« no previous file with comments | « no previous file | webrtc/examples/androidapp/res/values/strings.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698