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}
36 lines
1.5 KiB
XML
36 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_gravity="right"
|
|
android:orientation="vertical">
|
|
<TextView android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textStyle="bold"
|
|
android:textSize="24dip"
|
|
android:text="@string/gSettings">
|
|
</TextView>
|
|
<LinearLayout android:orientation="horizontal"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent">
|
|
<CheckBox android:id="@+id/cbAudio"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/enableAudio">
|
|
</CheckBox>
|
|
<CheckBox android:id="@+id/cbLoopback"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/loopback">
|
|
</CheckBox>
|
|
</LinearLayout>
|
|
<TextView android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/remoteIp">
|
|
</TextView>
|
|
<EditText android:id="@+id/etRemoteIp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
android:imeOptions="actionDone">
|
|
</EditText>
|
|
</LinearLayout> |