Newer
Older
dxcgt_app / app / src / main / res / anim / activity_zoom_in.xml
wangxitong on 12 Jan 2021 468 bytes first commit
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/linear_interpolator"
    android:shareInterpolator="true" >

    <scale
        android:duration="300"
        android:fromXScale="0"
        android:fromYScale="0"
        android:pivotX="50%"
        android:pivotY="50%"
        android:startOffset="300"
        android:toXScale="1"
        android:toYScale="1" />

</set>