17 lines
580 B
XML
17 lines
580 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<scale
|
|
android:duration="@integer/folder_animation_duration"
|
|
android:fromXScale="1.0"
|
|
android:fromYScale="1.0"
|
|
android:pivotX="50%"
|
|
android:pivotY="50%"
|
|
android:toXScale="1.05"
|
|
android:toYScale="1.05" />
|
|
|
|
<alpha xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:fromAlpha="1.0"
|
|
android:toAlpha="0.0"
|
|
android:duration="@integer/folder_animation_duration"
|
|
/>
|
|
</set> |