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