Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4c6cb39b authored by Amit's avatar Amit
Browse files

Remove slide-in/slide-out animation

parent f195015f
Loading
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -371,7 +371,6 @@ public class LauncherActivity extends AppCompatActivity implements
    protected void onResume() {
        super.onResume();
        Log.d(TAG, "onResume() called");
        overridePendingTransition(R.anim.reenter, R.anim.releave);
    }

    @Override

app/src/main/res/anim/reenter.xml

deleted100755 → 0
+0 −6
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="@android:integer/config_longAnimTime"
    android:fromXDelta="-100%p"
    android:toXDelta="0%p">
</translate>
 No newline at end of file

app/src/main/res/anim/releave.xml

deleted100755 → 0
+0 −6
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="@android:integer/config_longAnimTime"
    android:fromXDelta="0%p"
    android:toXDelta="100%p">
</translate>
 No newline at end of file