1<?xml version="1.0" encoding="utf-8"?> 2 3<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 4 android:orientation="vertical" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent"> 7 <ScrollView android:layout_width="match_parent" 8 android:layout_height="wrap_content"> 9 <RadioGroup android:orientation="horizontal" 10 android:layout_width="wrap_content" 11 android:layout_height="wrap_content" 12 android:id="@+id/path_animation_type" 13 > 14 <RadioButton android:id="@+id/named_components" 15 android:layout_width="wrap_content" 16 android:layout_height="wrap_content" 17 android:text="Named Components"/> 18 <RadioButton android:id="@+id/property_components" 19 android:layout_width="wrap_content" 20 android:layout_height="wrap_content" 21 android:text="Property Components"/> 22 <RadioButton android:id="@+id/multi_int" 23 android:layout_width="wrap_content" 24 android:layout_height="wrap_content" 25 android:text="Multi-int"/> 26 <RadioButton android:id="@+id/multi_float" 27 android:layout_width="wrap_content" 28 android:layout_height="wrap_content" 29 android:text="Multi-float"/> 30 <RadioButton android:id="@+id/named_setter" 31 android:layout_width="wrap_content" 32 android:layout_height="wrap_content" 33 android:text="Named Property"/> 34 <RadioButton android:id="@+id/property_setter" 35 android:layout_width="wrap_content" 36 android:layout_height="wrap_content" 37 android:text="Property"/> 38 </RadioGroup> 39 </ScrollView> 40 <view class="com.example.android.apis.animation.PathAnimations$CanvasView" 41 android:id="@+id/canvas" 42 android:layout_width="match_parent" 43 android:layout_height="0px" 44 android:layout_weight="1"> 45 <ImageView android:id="@+id/moved_item" 46 android:layout_width="wrap_content" 47 android:layout_height="wrap_content" 48 android:src="@drawable/frog"/> 49 </view> 50</LinearLayout>