ADD week 5
This commit is contained in:
6
02-Easy5/E5/resources/res/anim/abc_fade_in.xml
Normal file
6
02-Easy5/E5/resources/res/anim/abc_fade_in.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromAlpha="0"
|
||||
android:toAlpha="1"/>
|
6
02-Easy5/E5/resources/res/anim/abc_fade_out.xml
Normal file
6
02-Easy5/E5/resources/res/anim/abc_fade_out.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromAlpha="1"
|
||||
android:toAlpha="0"/>
|
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
|
||||
<scale
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="@integer/abc_config_activityDefaultDur"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="100%"
|
||||
android:fromXScale="0.9"
|
||||
android:toXScale="1"
|
||||
android:fromYScale="0.9"
|
||||
android:toYScale="1"/>
|
||||
<alpha
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="@integer/abc_config_activityShortDur"
|
||||
android:fromAlpha="0"
|
||||
android:toAlpha="1"/>
|
||||
</set>
|
8
02-Easy5/E5/resources/res/anim/abc_popup_enter.xml
Normal file
8
02-Easy5/E5/resources/res/anim/abc_popup_enter.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
|
||||
<alpha
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="@integer/abc_config_activityShortDur"
|
||||
android:fromAlpha="0"
|
||||
android:toAlpha="1"/>
|
||||
</set>
|
8
02-Easy5/E5/resources/res/anim/abc_popup_exit.xml
Normal file
8
02-Easy5/E5/resources/res/anim/abc_popup_exit.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
|
||||
<alpha
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="@integer/abc_config_activityShortDur"
|
||||
android:fromAlpha="1"
|
||||
android:toAlpha="0"/>
|
||||
</set>
|
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android" android:shareInterpolator="false">
|
||||
<scale
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="@integer/abc_config_activityDefaultDur"
|
||||
android:pivotX="50%"
|
||||
android:pivotY="100%"
|
||||
android:fromXScale="1"
|
||||
android:toXScale="0.9"
|
||||
android:fromYScale="1"
|
||||
android:toYScale="0.9"/>
|
||||
<alpha
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="@integer/abc_config_activityShortDur"
|
||||
android:fromAlpha="1"
|
||||
android:toAlpha="0"/>
|
||||
</set>
|
6
02-Easy5/E5/resources/res/anim/abc_slide_in_bottom.xml
Normal file
6
02-Easy5/E5/resources/res/anim/abc_slide_in_bottom.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromYDelta="50%p"
|
||||
android:toYDelta="0"/>
|
6
02-Easy5/E5/resources/res/anim/abc_slide_in_top.xml
Normal file
6
02-Easy5/E5/resources/res/anim/abc_slide_in_top.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromYDelta="-50%p"
|
||||
android:toYDelta="0"/>
|
6
02-Easy5/E5/resources/res/anim/abc_slide_out_bottom.xml
Normal file
6
02-Easy5/E5/resources/res/anim/abc_slide_out_bottom.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="50%p"/>
|
6
02-Easy5/E5/resources/res/anim/abc_slide_out_top.xml
Normal file
6
02-Easy5/E5/resources/res/anim/abc_slide_out_top.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:duration="@android:integer/config_mediumAnimTime"
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="-50%p"/>
|
6
02-Easy5/E5/resources/res/anim/abc_tooltip_enter.xml
Normal file
6
02-Easy5/E5/resources/res/anim/abc_tooltip_enter.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:interpolator/decelerate_quad"
|
||||
android:duration="@integer/config_tooltipAnimTime"
|
||||
android:fromAlpha="0"
|
||||
android:toAlpha="1"/>
|
6
02-Easy5/E5/resources/res/anim/abc_tooltip_exit.xml
Normal file
6
02-Easy5/E5/resources/res/anim/abc_tooltip_exit.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:interpolator/accelerate_quad"
|
||||
android:duration="@integer/config_tooltipAnimTime"
|
||||
android:fromAlpha="1"
|
||||
android:toAlpha="0"/>
|
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1"
|
||||
android:duration="166"
|
||||
android:valueFrom="M -7.0,-7.0 l 14.0,0.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l 0.0,14.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l -14.0,0.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l 0.0,-14.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z"
|
||||
android:valueTo="M 0.0,-0.05 l 0.0,0.0 c 0.02761423749,0.0 0.05,0.02238576251 0.05,0.05 l 0.0,0.0 c 0.0,0.02761423749 -0.02238576251,0.05 -0.05,0.05 l 0.0,0.0 c -0.02761423749,0.0 -0.05,-0.02238576251 -0.05,-0.05 l 0.0,0.0 c 0.0,-0.02761423749 0.02238576251,-0.05 0.05,-0.05 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z"
|
||||
android:valueType="pathType"
|
||||
android:propertyName="pathData"/>
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@android:interpolator/linear"
|
||||
android:duration="166"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="1"
|
||||
android:propertyName="fillAlpha"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0"
|
||||
android:duration="33"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="0"
|
||||
android:propertyName="fillAlpha"/>
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@android:interpolator/linear"
|
||||
android:duration="200"
|
||||
android:valueFrom="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M -2.0,5.00001525879 c 0.0,0.0 -1.4234161377,-1.40159606934 -1.4234161377,-1.40159606934 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 0.00932312011719,-0.0124053955078 0.00932312011719,-0.0124053955078 c 0.0,0.0 0.0234069824219,-0.0235137939453 0.0234069824219,-0.0235137939453 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -1.4375,1.43751525879 -1.4375,1.43751525879 Z"
|
||||
android:valueTo="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M -2.0,5.00001525879 c 0.0,0.0 -1.4234161377,-1.40159606934 -1.4234161377,-1.40159606934 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 0.00932312011719,-0.0124053955078 0.00932312011719,-0.0124053955078 c 0.0,0.0 0.0234069824219,-0.0235137939453 0.0234069824219,-0.0235137939453 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -1.4375,1.43751525879 -1.4375,1.43751525879 Z"
|
||||
android:valueType="pathType"
|
||||
android:propertyName="pathData"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1"
|
||||
android:duration="300"
|
||||
android:valueFrom="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M -2.0,5.00001525879 c 0.0,0.0 -1.4234161377,-1.40159606934 -1.4234161377,-1.40159606934 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 0.00932312011719,-0.0124053955078 0.00932312011719,-0.0124053955078 c 0.0,0.0 0.0234069824219,-0.0235137939453 0.0234069824219,-0.0235137939453 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -1.4375,1.43751525879 -1.4375,1.43751525879 Z"
|
||||
android:valueTo="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M -2.0,5.00001525879 c 0.0,0.0 -5.0,-5.00001525879 -5.0,-5.00001525879 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 3.58590698242,3.58601379395 3.58590698242,3.58601379395 c 0.0,0.0 7.58590698242,-7.58601379395 7.58590698242,-7.58601379395 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -9.0,9.00001525879 -9.0,9.00001525879 Z"
|
||||
android:valueType="pathType"
|
||||
android:propertyName="pathData"/>
|
||||
</set>
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@android:interpolator/linear"
|
||||
android:duration="166"
|
||||
android:valueFrom="0"
|
||||
android:valueTo="0"
|
||||
android:propertyName="fillAlpha"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_0"
|
||||
android:duration="33"
|
||||
android:valueFrom="0"
|
||||
android:valueTo="1"
|
||||
android:propertyName="fillAlpha"/>
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1"
|
||||
android:duration="200"
|
||||
android:valueFrom="0.2"
|
||||
android:valueTo="0.18"
|
||||
android:propertyName="scaleX"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1"
|
||||
android:duration="300"
|
||||
android:valueFrom="0.18"
|
||||
android:valueTo="0.2"
|
||||
android:propertyName="scaleX"/>
|
||||
</set>
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1"
|
||||
android:duration="200"
|
||||
android:valueFrom="0.2"
|
||||
android:valueTo="0.18"
|
||||
android:propertyName="scaleY"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_unchecked_mtrl_animation_interpolator_1"
|
||||
android:duration="300"
|
||||
android:valueFrom="0.18"
|
||||
android:valueTo="0.2"
|
||||
android:propertyName="scaleY"/>
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,33 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@android:interpolator/linear"
|
||||
android:duration="166"
|
||||
android:valueFrom="M 0.0,-1.0 l 0.0,0.0 c 0.5522847498,0.0 1.0,0.4477152502 1.0,1.0 l 0.0,0.0 c 0.0,0.5522847498 -0.4477152502,1.0 -1.0,1.0 l 0.0,0.0 c -0.5522847498,0.0 -1.0,-0.4477152502 -1.0,-1.0 l 0.0,0.0 c 0.0,-0.5522847498 0.4477152502,-1.0 1.0,-1.0 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z"
|
||||
android:valueTo="M 0.0,-1.0 l 0.0,0.0 c 0.5522847498,0.0 1.0,0.4477152502 1.0,1.0 l 0.0,0.0 c 0.0,0.5522847498 -0.4477152502,1.0 -1.0,1.0 l 0.0,0.0 c -0.5522847498,0.0 -1.0,-0.4477152502 -1.0,-1.0 l 0.0,0.0 c 0.0,-0.5522847498 0.4477152502,-1.0 1.0,-1.0 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z"
|
||||
android:valueType="pathType"
|
||||
android:propertyName="pathData"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1"
|
||||
android:duration="333"
|
||||
android:valueFrom="M 0.0,-1.0 l 0.0,0.0 c 0.5522847498,0.0 1.0,0.4477152502 1.0,1.0 l 0.0,0.0 c 0.0,0.5522847498 -0.4477152502,1.0 -1.0,1.0 l 0.0,0.0 c -0.5522847498,0.0 -1.0,-0.4477152502 -1.0,-1.0 l 0.0,0.0 c 0.0,-0.5522847498 0.4477152502,-1.0 1.0,-1.0 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z"
|
||||
android:valueTo="M -7.0,-7.0 l 14.0,0.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l 0.0,14.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l -14.0,0.0 c 0.0,0.0 0.0,0.0 0.0,0.0 l 0.0,-14.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z"
|
||||
android:valueType="pathType"
|
||||
android:propertyName="pathData"/>
|
||||
</set>
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@android:interpolator/linear"
|
||||
android:duration="133"
|
||||
android:valueFrom="0"
|
||||
android:valueTo="0"
|
||||
android:propertyName="fillAlpha"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0"
|
||||
android:duration="33"
|
||||
android:valueFrom="0"
|
||||
android:valueTo="1"
|
||||
android:propertyName="fillAlpha"/>
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1"
|
||||
android:duration="166"
|
||||
android:valueFrom="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M -2.0,5.00001525879 c 0.0,0.0 -5.0,-5.00001525879 -5.0,-5.00001525879 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 3.58590698242,3.58601379395 3.58590698242,3.58601379395 c 0.0,0.0 7.58590698242,-7.58601379395 7.58590698242,-7.58601379395 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -9.0,9.00001525879 -9.0,9.00001525879 Z"
|
||||
android:valueTo="M 7.0,-9.0 c 0.0,0.0 -14.0,0.0 -14.0,0.0 c -1.1044921875,0.0 -2.0,0.8955078125 -2.0,2.0 c 0.0,0.0 0.0,14.0 0.0,14.0 c 0.0,1.1044921875 0.8955078125,2.0 2.0,2.0 c 0.0,0.0 14.0,0.0 14.0,0.0 c 1.1044921875,0.0 2.0,-0.8955078125 2.0,-2.0 c 0.0,0.0 0.0,-14.0 0.0,-14.0 c 0.0,-1.1044921875 -0.8955078125,-2.0 -2.0,-2.0 c 0.0,0.0 0.0,0.0 0.0,0.0 Z M 0.0,1.42500305176 c 0.0,0.0 -1.4234161377,-1.40159606934 -1.4234161377,-1.40159606934 c 0.0,0.0 1.41409301758,-1.41409301758 1.41409301758,-1.41409301758 c 0.0,0.0 0.00932312011719,-0.0124053955078 0.00932312011719,-0.0124053955078 c 0.0,0.0 0.0234069824219,-0.0235137939453 0.0234069824219,-0.0235137939453 c 0.0,0.0 1.41409301758,1.41409301758 1.41409301758,1.41409301758 c 0.0,0.0 -1.4375,1.43751525879 -1.4375,1.43751525879 Z"
|
||||
android:valueType="pathType"
|
||||
android:propertyName="pathData"/>
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@android:interpolator/linear"
|
||||
android:duration="133"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="1"
|
||||
android:propertyName="fillAlpha"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_0"
|
||||
android:duration="33"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="0"
|
||||
android:propertyName="fillAlpha"/>
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1"
|
||||
android:duration="166"
|
||||
android:valueFrom="0.2"
|
||||
android:valueTo="0.18"
|
||||
android:propertyName="scaleX"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1"
|
||||
android:duration="333"
|
||||
android:valueFrom="0.18"
|
||||
android:valueTo="0.2"
|
||||
android:propertyName="scaleX"/>
|
||||
</set>
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1"
|
||||
android:duration="166"
|
||||
android:valueFrom="0.2"
|
||||
android:valueTo="0.18"
|
||||
android:propertyName="scaleY"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_checkbox_checked_mtrl_animation_interpolator_1"
|
||||
android:duration="333"
|
||||
android:valueFrom="0.18"
|
||||
android:valueTo="0.2"
|
||||
android:propertyName="scaleY"/>
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="183"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="1.4"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleX"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="16"
|
||||
android:valueFrom="1.4"
|
||||
android:valueTo="0"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleX"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="300"
|
||||
android:valueFrom="0"
|
||||
android:valueTo="0"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleX"/>
|
||||
</set>
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="183"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="1.4"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleY"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="16"
|
||||
android:valueFrom="1.4"
|
||||
android:valueTo="0"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleY"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="300"
|
||||
android:valueFrom="0"
|
||||
android:valueTo="0"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleY"/>
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="183"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="0.9"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleX"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_radio_to_off_mtrl_animation_interpolator_0"
|
||||
android:duration="16"
|
||||
android:valueFrom="0.9"
|
||||
android:valueTo="0.5"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleX"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_radio_to_off_mtrl_animation_interpolator_0"
|
||||
android:duration="300"
|
||||
android:valueFrom="0.5"
|
||||
android:valueTo="1"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleX"/>
|
||||
</set>
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="183"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="0.9"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleY"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_radio_to_off_mtrl_animation_interpolator_0"
|
||||
android:duration="16"
|
||||
android:valueFrom="0.9"
|
||||
android:valueTo="0.5"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleY"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_radio_to_off_mtrl_animation_interpolator_0"
|
||||
android:duration="300"
|
||||
android:valueFrom="0.5"
|
||||
android:valueTo="1"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleY"/>
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="183"
|
||||
android:valueFrom="2"
|
||||
android:valueTo="2"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="strokeWidth"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="16"
|
||||
android:valueFrom="2"
|
||||
android:valueTo="18"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="strokeWidth"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="300"
|
||||
android:valueFrom="18"
|
||||
android:valueTo="2"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="strokeWidth"/>
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="166"
|
||||
android:valueFrom="0"
|
||||
android:valueTo="0"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleX"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="16"
|
||||
android:valueFrom="0"
|
||||
android:valueTo="1.5"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleX"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="316"
|
||||
android:valueFrom="1.5"
|
||||
android:valueTo="1"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleX"/>
|
||||
</set>
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="166"
|
||||
android:valueFrom="0"
|
||||
android:valueTo="0"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleY"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="16"
|
||||
android:valueFrom="0"
|
||||
android:valueTo="1.5"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleY"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="316"
|
||||
android:valueFrom="1.5"
|
||||
android:valueTo="1"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleY"/>
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="166"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="0.5"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleX"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="16"
|
||||
android:valueFrom="0.5"
|
||||
android:valueTo="0.9"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleX"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="316"
|
||||
android:valueFrom="0.9"
|
||||
android:valueTo="1"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleX"/>
|
||||
</set>
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="166"
|
||||
android:valueFrom="1"
|
||||
android:valueTo="0.5"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleY"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="16"
|
||||
android:valueFrom="0.5"
|
||||
android:valueTo="0.9"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleY"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="316"
|
||||
android:valueFrom="0.9"
|
||||
android:valueTo="1"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="scaleY"/>
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<set android:ordering="sequentially">
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/btn_radio_to_on_mtrl_animation_interpolator_0"
|
||||
android:duration="166"
|
||||
android:valueFrom="2"
|
||||
android:valueTo="18"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="strokeWidth"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="16"
|
||||
android:valueFrom="18"
|
||||
android:valueTo="2"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="strokeWidth"/>
|
||||
<objectAnimator
|
||||
android:interpolator="@interpolator/fast_out_slow_in"
|
||||
android:duration="316"
|
||||
android:valueFrom="2"
|
||||
android:valueTo="2"
|
||||
android:valueType="floatType"
|
||||
android:propertyName="strokeWidth"/>
|
||||
</set>
|
||||
</set>
|
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:interpolator/fast_out_linear_in"
|
||||
android:duration="@integer/bottom_sheet_slide_duration">
|
||||
<translate
|
||||
android:fromYDelta="20%p"
|
||||
android:toYDelta="0"/>
|
||||
<alpha
|
||||
android:fromAlpha="0"
|
||||
android:toAlpha="1"/>
|
||||
</set>
|
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:interpolator/fast_out_slow_in"
|
||||
android:duration="@integer/bottom_sheet_slide_duration">
|
||||
<translate
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="20%p"/>
|
||||
<alpha
|
||||
android:fromAlpha="1"
|
||||
android:toAlpha="0"/>
|
||||
</set>
|
4
02-Easy5/E5/resources/res/anim/design_snackbar_in.xml
Normal file
4
02-Easy5/E5/resources/res/anim/design_snackbar_in.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:fromYDelta="100%"
|
||||
android:toYDelta="0"/>
|
4
02-Easy5/E5/resources/res/anim/design_snackbar_out.xml
Normal file
4
02-Easy5/E5/resources/res/anim/design_snackbar_out.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="100%"/>
|
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android" android:pathData="M 0,0 C 0.05, 0, 0.133333, 0.06, 0.166666, 0.4 C 0.208333, 0.82, 0.25, 1, 1, 1"/>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:controlX1="0.2"
|
||||
android:controlY1="0"
|
||||
android:controlX2="0.8"
|
||||
android:controlY2="1"/>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:controlX1="0.4"
|
||||
android:controlY1="0"
|
||||
android:controlX2="1"
|
||||
android:controlY2="1"/>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:controlX1="0"
|
||||
android:controlY1="0"
|
||||
android:controlX2="0.65"
|
||||
android:controlY2="1"/>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:controlX1="0.1"
|
||||
android:controlY1="0"
|
||||
android:controlX2="0.45"
|
||||
android:controlY2="1"/>
|
11
02-Easy5/E5/resources/res/anim/m3_bottom_sheet_slide_in.xml
Normal file
11
02-Easy5/E5/resources/res/anim/m3_bottom_sheet_slide_in.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@interpolator/m3_sys_motion_easing_emphasized"
|
||||
android:duration="@integer/m3_sys_motion_duration_medium4">
|
||||
<translate
|
||||
android:fromYDelta="20%p"
|
||||
android:toYDelta="0"/>
|
||||
<alpha
|
||||
android:fromAlpha="0"
|
||||
android:toAlpha="1"/>
|
||||
</set>
|
13
02-Easy5/E5/resources/res/anim/m3_bottom_sheet_slide_out.xml
Normal file
13
02-Easy5/E5/resources/res/anim/m3_bottom_sheet_slide_out.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate
|
||||
android:interpolator="@interpolator/m3_sys_motion_easing_emphasized"
|
||||
android:duration="@integer/m3_sys_motion_duration_medium3"
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="20%p"/>
|
||||
<alpha
|
||||
android:interpolator="@interpolator/m3_sys_motion_easing_emphasized"
|
||||
android:duration="@integer/m3_sys_motion_duration_medium2"
|
||||
android:fromAlpha="1"
|
||||
android:toAlpha="0"/>
|
||||
</set>
|
16
02-Easy5/E5/resources/res/anim/m3_motion_fade_enter.xml
Normal file
16
02-Easy5/E5/resources/res/anim/m3_motion_fade_enter.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@interpolator/m3_sys_motion_easing_emphasized_decelerate"
|
||||
android:duration="@integer/m3_sys_motion_duration_medium4"
|
||||
android:shareInterpolator="true">
|
||||
<alpha
|
||||
android:fromAlpha="0"
|
||||
android:toAlpha="1"/>
|
||||
<scale
|
||||
android:pivotX="50%"
|
||||
android:pivotY="50%"
|
||||
android:fromXScale="0.8"
|
||||
android:toXScale="1"
|
||||
android:fromYScale="0.8"
|
||||
android:toYScale="1"/>
|
||||
</set>
|
9
02-Easy5/E5/resources/res/anim/m3_motion_fade_exit.xml
Normal file
9
02-Easy5/E5/resources/res/anim/m3_motion_fade_exit.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@interpolator/m3_sys_motion_easing_emphasized_accelerate"
|
||||
android:duration="@integer/m3_sys_motion_duration_short3"
|
||||
android:shareInterpolator="true">
|
||||
<alpha
|
||||
android:fromAlpha="1"
|
||||
android:toAlpha="0"/>
|
||||
</set>
|
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="?attr/motionEasingEmphasizedInterpolator"
|
||||
android:duration="275">
|
||||
<translate
|
||||
android:fromXDelta="-100%"
|
||||
android:toXDelta="0"/>
|
||||
</set>
|
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="?attr/motionEasingEmphasizedInterpolator"
|
||||
android:duration="275">
|
||||
<translate
|
||||
android:fromXDelta="100%"
|
||||
android:toXDelta="0"/>
|
||||
</set>
|
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="?attr/motionEasingEmphasizedInterpolator"
|
||||
android:duration="275">
|
||||
<translate
|
||||
android:fromXDelta="0"
|
||||
android:toXDelta="-100%"/>
|
||||
</set>
|
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="?attr/motionEasingEmphasizedInterpolator"
|
||||
android:duration="275">
|
||||
<translate
|
||||
android:fromXDelta="0"
|
||||
android:toXDelta="100%"/>
|
||||
</set>
|
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:interpolator/linear_out_slow_in"
|
||||
android:duration="250">
|
||||
<translate
|
||||
android:fromYDelta="20%p"
|
||||
android:toYDelta="0"/>
|
||||
<alpha
|
||||
android:fromAlpha="0"
|
||||
android:toAlpha="1"/>
|
||||
</set>
|
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:interpolator/fast_out_linear_in"
|
||||
android:duration="200">
|
||||
<translate
|
||||
android:fromYDelta="0"
|
||||
android:toYDelta="20%p"/>
|
||||
<alpha
|
||||
android:fromAlpha="1"
|
||||
android:toAlpha="0"/>
|
||||
</set>
|
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<pathInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:controlX1="0.4"
|
||||
android:controlY1="0"
|
||||
android:controlX2="0.6"
|
||||
android:controlY2="1"/>
|
Reference in New Issue
Block a user