• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="wrap_content"
4    android:layout_height="wrap_content">
5    <FrameLayout android:id="@+id/video_frame_view"
6        android:layout_width="wrap_content"
7        android:layout_height="wrap_content"
8        android:layout_margin="10dip"
9        android:layout_centerHorizontal="true"
10        android:padding="4dip"
11        android:background="@drawable/surface_background">
12        <com.android.videoeditor.widgets.ImageViewTouchBase android:id="@+id/ken_burns_image"
13            android:layout_width="720dip"
14            android:layout_height="0px"
15            android:layout_centerHorizontal="true"
16            android:layout_margin="20dip"/>
17    </FrameLayout>
18
19    <ProgressBar android:id="@+id/image_loading"
20        style="?android:attr/progressBarStyleSmall"
21        android:layout_width="wrap_content"
22        android:layout_height="wrap_content"
23        android:layout_centerInParent="true"
24        android:visibility="gone"
25        android:indeterminate="true"/>
26
27    <LinearLayout
28        android:orientation="horizontal"
29        android:layout_width="match_parent"
30        android:layout_height="wrap_content"
31        android:layout_below="@id/video_frame_view"
32        android:padding="10dip"
33        android:gravity="center_horizontal">
34        <RadioGroup android:id="@+id/which_rectangle"
35            android:orientation="horizontal"
36            android:layout_width="wrap_content"
37            android:layout_height="wrap_content">
38            <RadioButton android:id="@+id/start_rectangle"
39                android:layout_width="wrap_content"
40                android:layout_height="wrap_content"
41                android:layout_marginRight="30dip"
42                android:text="@string/pan_zoom_start"/>
43            <RadioButton android:id="@+id/end_rectangle"
44                android:layout_width="wrap_content"
45                android:layout_height="wrap_content"
46                android:layout_marginRight="30dip"
47                android:text="@string/pan_zoom_end"/>
48        </RadioGroup>
49        <Button android:id="@+id/done"
50            android:onClick="onClickHandler"
51            android:layout_width="wrap_content"
52            android:layout_height="wrap_content"
53            android:text="@string/done"/>
54    </LinearLayout>
55</RelativeLayout>
56