I am trying to slide an Activity from Bottom to Top which I am able to do.
But while sliding from bottom to top my background activity is also sliding to bottom. I want to keep background activity to same position as it was, so that the new activity will seem as a overlay to background activity when open.
Here are my slide_in_up.xml
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromYDelta="100%p" android:toYDelta="0%p"
android:duration="@android:integer/config_longAnimTime"/>
and slide_out_up.xml
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromYDelta="0%p" android:toYDelta="100%p"
android:duration="@android:integer/config_longAnimTime"/>
How can I do that?
Thanks...