blob: 273a2f3e6977a0eb75eeed9aaa9615fcdc12b904 [file] [log] [blame]
glaznev@webrtc.org21612342015-03-17 18:23:31 +00001<?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>