Shelter/app/src/main/res/anim/scale_appear.xml
Peter Cai 3a95ba5945
AppListFragment: allow creating "linked unfreezing" shortcuts
Allow creating an "unfreeze & launch" shortcut that contains several extra apps to unfreeze before launching the main one. This can be useful for apps that have dependency relationships on other apps and the user wants a quick way to unfreeze them all while still pertaining Shelter's auto-freeze feature.
2018-10-14 13:22:29 +08:00

11 lines
341 B
XML

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<scale
android:duration="200"
android:fromXScale="0.0"
android:fromYScale="0.0"
android:pivotX="50%"
android:pivotY="50%"
android:toXScale="1.0"
android:toYScale="1.0" />
</set>