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

Side by Side Diff: talk/examples/android/res/layout/fragment_hud.xml

Issue 1235563006: Move talk/examples/* to webrtc/examples. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 201508051337 Created 5 years, 4 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
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <RelativeLayout
4 xmlns:android="http://schemas.android.com/apk/res/android"
5 xmlns:tools="http://schemas.android.com/tools"
6 android:layout_width="match_parent"
7 android:layout_height="match_parent">
8
9 <ImageButton
10 android:id="@+id/button_toggle_debug"
11 android:background="@android:drawable/ic_menu_info_details"
12 android:contentDescription="@string/toggle_debug"
13 android:layout_alignParentBottom="true"
14 android:layout_alignParentStart="true"
15 android:layout_width="48dp"
16 android:layout_height="48dp"/>
17
18 <TextView
19 android:id="@+id/encoder_stat_call"
20 android:layout_width="wrap_content"
21 android:layout_height="wrap_content"
22 android:layout_alignParentEnd="true"
23 android:textStyle="bold"
24 android:textColor="#C000FF00"
25 android:textSize="12dp"
26 android:layout_margin="8dp"/>
27
28 <TableLayout
29 android:id="@+id/hudview_container"
30 android:layout_width="match_parent"
31 android:layout_height="match_parent">
32
33 <TableRow>
34 <TextView
35 android:id="@+id/hud_stat_bwe"
36 android:layout_width="wrap_content"
37 android:layout_height="wrap_content"
38 android:alpha="0.4"
39 android:padding="2dip"
40 android:background="@android:color/white"
41 android:textColor="@android:color/black" />
42
43 <TextView
44 android:id="@+id/hud_stat_connection"
45 android:layout_width="wrap_content"
46 android:layout_height="wrap_content"
47 android:alpha="0.4"
48 android:padding="2dip"
49 android:background="@android:color/white"
50 android:textColor="@android:color/black" />
51
52 </TableRow>
53
54 <TableRow>
55 <TextView
56 android:id="@+id/hud_stat_video_send"
57 android:layout_width="wrap_content"
58 android:layout_height="wrap_content"
59 android:alpha="0.4"
60 android:padding="2dip"
61 android:background="@android:color/white"
62 android:textColor="@android:color/black" />
63
64 <TextView
65 android:id="@+id/hud_stat_video_recv"
66 android:layout_width="wrap_content"
67 android:layout_height="wrap_content"
68 android:padding="2dip"
69 android:alpha="0.4"
70 android:background="@android:color/white"
71 android:textColor="@android:color/black" />
72 </TableRow>
73 </TableLayout>
74
75 </RelativeLayout>
OLDNEW
« no previous file with comments | « talk/examples/android/res/layout/fragment_call.xml ('k') | talk/examples/android/res/menu/connect_menu.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698