• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2
3<RelativeLayout
4    xmlns:android="http://schemas.android.com/apk/res/android"
5    android:layout_width="match_parent"
6    android:layout_height="match_parent">
7
8    <ImageButton
9        android:id="@+id/button_toggle_debug"
10        android:background="@android:drawable/ic_menu_info_details"
11        android:contentDescription="@string/toggle_debug"
12        android:layout_alignParentBottom="true"
13        android:layout_alignParentStart="true"
14        android:layout_width="48dp"
15        android:layout_height="48dp"/>
16
17    <TextView
18        android:id="@+id/encoder_stat_call"
19        android:layout_width="wrap_content"
20        android:layout_height="wrap_content"
21        android:layout_alignParentEnd="true"
22        android:textStyle="bold"
23        android:textColor="#C000FF00"
24        android:textSize="12sp"
25        android:layout_margin="8dp"/>
26
27    <TableLayout
28           android:id="@+id/hudview_container"
29           android:layout_width="match_parent"
30           android:layout_height="match_parent">
31
32           <TableRow>
33              <TextView
34                 android:id="@+id/hud_stat_bwe"
35                 android:layout_width="wrap_content"
36                 android:layout_height="wrap_content"
37                 android:alpha="0.4"
38                 android:padding="2dip"
39                 android:background="@android:color/white"
40                 android:textColor="@android:color/black" />
41
42              <TextView
43                 android:id="@+id/hud_stat_connection"
44                 android:layout_width="wrap_content"
45                 android:layout_height="wrap_content"
46                 android:alpha="0.4"
47                 android:padding="2dip"
48                 android:background="@android:color/white"
49                 android:textColor="@android:color/black" />
50
51           </TableRow>
52
53           <TableRow>
54              <TextView
55                 android:id="@+id/hud_stat_video_send"
56                 android:layout_width="wrap_content"
57                 android:layout_height="wrap_content"
58                 android:alpha="0.4"
59                 android:padding="2dip"
60                 android:background="@android:color/white"
61                 android:textColor="@android:color/black" />
62
63              <TextView
64                 android:id="@+id/hud_stat_video_recv"
65                 android:layout_width="wrap_content"
66                 android:layout_height="wrap_content"
67                 android:padding="2dip"
68                 android:alpha="0.4"
69                 android:background="@android:color/white"
70                 android:textColor="@android:color/black" />
71            </TableRow>
72    </TableLayout>
73
74</RelativeLayout>
75