2019-12-03 17:57:21 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<objectAnimator
|
2022-02-03 17:06:17 -05:00
|
|
|
android:duration="@integer/reaction_scrubber_hide_duration"
|
2019-12-03 17:57:21 -04:00
|
|
|
android:interpolator="@android:anim/decelerate_interpolator"
|
|
|
|
android:propertyName="translationY"
|
|
|
|
android:valueTo="@dimen/reaction_scrubber_anim_start_translation_y"
|
|
|
|
android:valueFrom="@dimen/reaction_scrubber_anim_end_translation_y" />
|
|
|
|
|
|
|
|
<objectAnimator
|
2022-02-03 17:06:17 -05:00
|
|
|
android:duration="@integer/reaction_scrubber_hide_duration"
|
2019-12-03 17:57:21 -04:00
|
|
|
android:interpolator="@android:anim/decelerate_interpolator"
|
|
|
|
android:propertyName="alpha"
|
|
|
|
android:valueTo="0"
|
|
|
|
android:valueFrom="1" />
|
|
|
|
</set>
|