fragment_snapshot.xml revision 4ae1a87883045d820ffd6e1b8a95c13b1919e00a
1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2    android:id="@+id/layout_root"
3    android:layout_width="fill_parent"
4    android:layout_height="fill_parent"
5    android:orientation="vertical"
6    android:padding="10dp" >
7
8    <ImageView
9        android:id="@+id/snapshot_image"
10        android:layout_width="match_parent"
11        android:layout_height="wrap_content"
12        android:layout_marginRight="10dp"
13        android:layout_weight="4"
14        android:contentDescription="@string/still_image_description" />
15
16    <TextView
17        android:id="@+id/snapshot_text"
18        android:layout_width="match_parent"
19        android:layout_height="wrap_content"
20        android:layout_weight="1"
21        android:text="@string/snapshot_text_default"
22        android:textColor="#FFF" />
23
24    <Button
25        android:id="@+id/snapshot_ok"
26        android:layout_width="wrap_content"
27        android:layout_height="wrap_content"
28        android:text="@string/snapshot_ok_label" />
29
30</LinearLayout>
31