简体   繁体   中英

Layout animation in android is not working properly

I want to slide my layout from top to bottom and remain visible. below is the code which do layout from bottom to top.

<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="400"
android:fillAfter="true"
android:fromYDelta="100%p"
android:interpolator="@android:anim/bounce_interpolator"
android:toYDelta="0%p" />

try this

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

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