-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathanimation4_photo_manipulation_desc.xml
40 lines (33 loc) · 1.23 KB
/
animation4_photo_manipulation_desc.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<MotionScene xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<ConstraintSet android:id="@+id/start">
<Constraint android:id="@id/view">
<CustomAttribute
app:attributeName="Crossfade"
app:customFloatValue="0" />
</Constraint>
</ConstraintSet>
<ConstraintSet android:id="@+id/end">
<Constraint android:id="@id/view">
<CustomAttribute
app:attributeName="Crossfade"
app:customFloatValue="1" />
<Layout
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</Constraint>
</ConstraintSet>
<Transition
app:constraintSetEnd="@id/end"
app:constraintSetStart="@id/start"
app:duration="400">
<OnClick
app:clickAction="toggle"
app:targetId="@id/view" />
</Transition>
</MotionScene>