简体   繁体   中英

Android Animation From Middle Of The Screen to Top And Out Of View?

I have been trying to find the answer but, have had no success. I need the XML for the animation if the Activity is currently on in the middle of the screen, and for it to slide up and out of view.

Any help would be greatly appretiated!

if I understand what you want correctly, I think you should try something like:

<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="500"
    android:fromYDelta="0%"
    android:toYDelta="100%" />

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM