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