I have listview on MainFragment. When i clicked on listview cell open second intent (DetailActivity) and this show me detailed information of clicked cell. How make Activity sliding in android?
1) MainFragment
2) DetailActivity
I have listview on MainFragment. When i clicked on listview cell open second intent (DetailActivity) and this show me detailed information of clicked cell. How make Activity sliding in android?
1) MainFragment
2) DetailActivity
When you are implementing onClick use this:
startActivity(intent);
this.overridePendingTransition(R.anim.slide_in_right,
R.anim.slide_out_left);
slide_in_right:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false" >
<translate
android:duration="300"
android:fromXDelta="100%"
android:fromYDelta="0%"
android:toXDelta="0%"
android:toYDelta="0%" />
</set>
slide_out_left:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false" >
<translate
android:duration="300"
android:fromXDelta="0%"
android:fromYDelta="0%"
android:toXDelta="-100%"
android:toYDelta="0%" />
</set>