• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<LinearLayout
2    xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="match_parent"
4    android:layout_height="wrap_content"
5    android:orientation="vertical">
6
7    <TextView
8        android:layout_width="match_parent"
9        android:layout_height="wrap_content"
10        android:scrollbars="vertical"
11        android:gravity="bottom"
12        android:id="@+id/audio_wired_port_exists"
13        android:text="@string/audio_wired_exists" />
14
15    <LinearLayout
16        android:layout_width="match_parent"
17        android:layout_height="wrap_content"
18        android:orientation="horizontal">
19
20        <Button
21            android:layout_width="wrap_content"
22            android:layout_height="wrap_content"
23            android:id="@+id/audio_wired_no"
24            android:text="@string/audio_wired_no" />
25
26        <Button
27            android:layout_width="wrap_content"
28            android:layout_height="wrap_content"
29            android:id="@+id/audio_wired_yes"
30            android:text="@string/audio_wired_yes" />
31    </LinearLayout>
32</LinearLayout>
33