summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/examples/androidapp/res/layout/fragment_hud.xml
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libwebrtc/examples/androidapp/res/layout/fragment_hud.xml')
-rw-r--r--third_party/libwebrtc/examples/androidapp/res/layout/fragment_hud.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/third_party/libwebrtc/examples/androidapp/res/layout/fragment_hud.xml b/third_party/libwebrtc/examples/androidapp/res/layout/fragment_hud.xml
new file mode 100644
index 0000000000..483e7ba456
--- /dev/null
+++ b/third_party/libwebrtc/examples/androidapp/res/layout/fragment_hud.xml
@@ -0,0 +1,27 @@
+<?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:background="@android:drawable/ic_menu_info_details"
+ android:contentDescription="@string/toggle_debug"
+ android:layout_alignParentBottom="true"
+ android:layout_alignParentStart="true"
+ android:layout_width="48dp"
+ android:layout_height="48dp"/>
+
+ <TextView
+ android:id="@+id/hud_stat_call"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentEnd="true"
+ android:textStyle="bold"
+ android:textColor="#C000FF00"
+ android:textSize="12sp"
+ android:layout_margin="8dp"/>
+
+</RelativeLayout>