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

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

Issue 1998483003: General cleanup on AppRTC Android Demo codebase (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove unused string that was accidentally added. Created 4 years, 7 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
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 android:layout_width="match_parent"
6 android:layout_width="match_parent" 6 android:layout_height="match_parent">
7 android:layout_height="match_parent">
8 7
9 <TextView 8 <TextView
10 android:id="@+id/contact_name_call" 9 android:id="@+id/contact_name_call"
11 android:layout_width="wrap_content" 10 android:layout_width="wrap_content"
12 android:layout_height="wrap_content" 11 android:layout_height="wrap_content"
13 android:layout_centerHorizontal="true" 12 android:layout_centerHorizontal="true"
14 android:layout_above="@+id/buttons_call_container" 13 android:layout_above="@+id/buttons_call_container"
15 android:textSize="24sp" 14 android:textSize="24sp"
16 android:layout_margin="8dp"/> 15 android:layout_margin="8dp"/>
17 16
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 android:layout_height="48dp"/> 56 android:layout_height="48dp"/>
58 </LinearLayout> 57 </LinearLayout>
59 58
60 <TextView 59 <TextView
61 android:id="@+id/capture_format_text_call" 60 android:id="@+id/capture_format_text_call"
62 android:layout_width="wrap_content" 61 android:layout_width="wrap_content"
63 android:layout_height="wrap_content" 62 android:layout_height="wrap_content"
64 android:layout_centerHorizontal="true" 63 android:layout_centerHorizontal="true"
65 android:layout_above="@+id/capture_format_slider_call" 64 android:layout_above="@+id/capture_format_slider_call"
66 android:textSize="16sp" 65 android:textSize="16sp"
67 android:text="Slide to change capture format"/> 66 android:text="@string/capture_format_change_text"/>
68 67
69 <SeekBar 68 <SeekBar
70 android:id="@+id/capture_format_slider_call" 69 android:id="@+id/capture_format_slider_call"
71 android:layout_width="match_parent" 70 android:layout_width="match_parent"
72 android:layout_height="wrap_content" 71 android:layout_height="wrap_content"
73 android:layout_centerHorizontal="true" 72 android:layout_centerHorizontal="true"
74 android:layout_alignParentBottom="true" 73 android:layout_alignParentBottom="true"
75 android:progress="50" 74 android:progress="50"
76 android:layout_margin="8dp"/> 75 android:layout_margin="8dp"/>
77 76
78 </RelativeLayout> 77 </RelativeLayout>
OLDNEW
« no previous file with comments | « webrtc/examples/androidapp/res/layout/activity_call.xml ('k') | webrtc/examples/androidapp/res/layout/fragment_hud.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698