Merge "Add scale animation to PiP button click."

This commit is contained in:
Jacqueline Bronger
2023-02-14 09:45:05 +00:00
committed by Android (Google) Code Review

View File

@@ -18,6 +18,20 @@
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<set>
<objectAnimator
android:duration="200"
android:propertyName="scaleX"
android:valueTo="1.0"
android:valueType="floatType"/>
<objectAnimator
android:duration="200"
android:propertyName="scaleY"
android:valueTo="1.0"
android:valueType="floatType"/>
</set>
</item>
<item android:state_focused="true">
<set>
<objectAnimator