[embedyt] https://www.youtube.com/watch?v=C8MrscyUXz8[/embedyt]
Links & Dependenciesactivity_main.xmlMainActivity.javaactivity_2.xmlActivity2.java
Library on GitHub with dependencies + instructions:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:orientation="vertical" tools:context="com.codinginflow.intentanimationexample.MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Activity 1" android:textColor="@android:color/black" android:textSize="30sp" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="openActivity2" android:text="Open Activity 2" /> </LinearLayout>
package com.codinginflow.intentanimationexample; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import maes.tech.intentanim.CustomIntent; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } public void openActivity2(View v) { Intent intent = new Intent(this, Activity2.class); startActivity(intent); CustomIntent.customType(this, "fadein-to-fadeout"); } }
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:orientation="vertical" tools:context="com.codinginflow.intentanimationexample.Activity2"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Activity 2" android:textColor="@android:color/black" android:textSize="30sp" /> </LinearLayout>
package com.codinginflow.intentanimationexample; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import maes.tech.intentanim.CustomIntent; public class Activity2 extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_2); } @Override public void finish() { super.finish(); CustomIntent.customType(this, "fadein-to-fadeout"); } }