• 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:layout_width="match_parent"
4    android:layout_height="match_parent">
5
6    <LinearLayout
7        android:layout_width="match_parent"
8        android:layout_height="wrap_content"
9        android:layout_weight="1"
10        android:orientation="vertical">
11        <TextView
12            android:id="@+id/camera_display_name"
13            android:layout_width="match_parent"
14            android:layout_height="wrap_content"
15            android:layout_weight="1"
16            android:text="TextView"
17            android:textAppearance="@android:style/TextAppearance.Material.Large" />
18        <TextView
19            android:id="@+id/camera_id"
20            android:layout_width="match_parent"
21            android:layout_height="wrap_content"
22            android:layout_weight="1"
23            android:text="TextView" />
24    </LinearLayout>
25    <Button
26        android:id="@+id/remove_button"
27        android:layout_width="wrap_content"
28        android:layout_height="wrap_content"
29        android:text="Remove" />
30</LinearLayout>