Android layout animation

500 Views Asked by At

i have a button at the bottom of layout, on clicking on that button that button should be moved to top(with 48 DP margin from top). How to do that please help.

1

There are 1 best solutions below

2
On

place this move.xml in anim folder

<?xml version="1.0" encoding="utf-8"?>
<set
xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator"
android:fillAfter="true">

<translate
android:fromYDelta="0%p"
android:toYDelta="-80%p"
android:duration="800" />
</set>

and use for animate that button use this code

// Animation
final Animation move_anim =   AnimationUtils.loadAnimation(this,R.anim.move);

and put this in to your onclick event

btn.startAnimation(move_anim)