• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:orientation="vertical"
4    android:layout_width="match_parent"
5    android:layout_height="match_parent"
6    >
7    <Button android:id="@+id/localvideo"
8        android:layout_height="wrap_content"
9        android:layout_width="match_parent"
10        android:text="@string/local_video"
11    />
12
13    <Button android:id="@+id/streamvideo"
14        android:layout_height="wrap_content"
15        android:layout_width="match_parent"
16        android:text="@string/stream_video"
17    />
18
19    <Button android:id="@+id/localaudio"
20        android:layout_height="wrap_content"
21        android:layout_width="match_parent"
22        android:text="@string/local_audio"
23    />
24
25    <Button android:id="@+id/resourcesaudio"
26        android:layout_height="wrap_content"
27        android:layout_width="match_parent"
28        android:text="@string/res_audio"
29    />
30
31</LinearLayout>
32