7bb4a9881d
from https://github.com/hkjellander/AppRTCDemo. Description of changes: - Add connect screen with an option to enter room number or select loopback mode. - Add 'hangup' and 'WebRTC statistics' buttons to AppRTCDemo activity. BUG=3938 R=kjellander@webrtc.org, pbos@webrtc.org, pthatcher@webrtc.org Review URL: https://webrtc-codereview.appspot.com/28749004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7500 4adac7df-926f-26a2-2b94-8c16560cd09d
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:context="org.appspot.apprtc.AppRTCDemoActivity$MenuBarFragment"
|
|
android:id="@+id/menubar"
|
|
android:orientation="horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_vertical|center_horizontal">
|
|
|
|
<ImageButton
|
|
android:id="@+id/button_disconnect"
|
|
android:background="@drawable/disconnect"
|
|
android:contentDescription="@string/disconnect_call"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"/>
|
|
|
|
<!-- TODO(kjellander): Add audio and video mute buttons. -->
|
|
|
|
<ImageButton
|
|
android:id="@+id/button_toggle_debug"
|
|
android:background="@android:drawable/ic_menu_info_details"
|
|
android:contentDescription="@string/disconnect_call"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"/>
|
|
|
|
</LinearLayout>
|