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 <LinearLayout android:layout_width="wrap_content" 8 android:layout_height="wrap_content" 9 android:orientation="horizontal"> 10 <Button android:id="@+id/av_launch_activity" 11 android:layout_width="wrap_content" 12 android:layout_height="wrap_content" 13 android:text="@string/av_start_activity"/> 14 <Button android:id="@+id/av_resize" 15 android:layout_width="wrap_content" 16 android:layout_height="wrap_content" 17 android:text="@string/av_resize"/> 18 </LinearLayout> 19 <RelativeLayout android:layout_width="wrap_content" 20 android:layout_height="wrap_content" 21 android:padding="20dp"> 22 <ActivityView android:id="@+id/av_activityview" 23 android:layout_width="match_parent" 24 android:layout_height="match_parent"/> 25 </RelativeLayout> 26 27</LinearLayout>