This is in preparation to remove the use of the old Video Api and the use of the old video capture module on Android in particular. R=henrika@webrtc.org, mflodman@webrtc.org, pbos@webrtc.org Review URL: https://webrtc-codereview.appspot.com/44819004 Cr-Commit-Position: refs/heads/master@{#8856}
26 lines
1009 B
XML
26 lines
1009 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="120dip"
|
|
android:layout_height="fill_parent">
|
|
<TextView android:id="@+id/tvStats"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="60dip"
|
|
android:textSize="6sp"
|
|
android:text=""/>
|
|
<Button android:id="@+id/btStats"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"
|
|
android:text="@string/stats"/>
|
|
<Button android:id="@+id/btStartStopCall"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom"/>
|
|
</LinearLayout>
|
|
</LinearLayout> |