| | |
| | | import android.content.Intent; |
| | | import android.os.Bundle; |
| | | import android.os.SystemClock; |
| | | import android.text.TextUtils; |
| | | import android.util.Log; |
| | | |
| | | import androidx.annotation.Nullable; |
| | |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public void startActivity(Intent intent) { |
| | | super.startActivity(intent); |
| | | overridePendingTransition(0, 0); |
| | | } |
| | | |
| | | void openActivity(Intent intent) { |
| | | intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION); |
| | | startActivity(intent); |
| | | finish(); |
| | | } |
| | | |
| | | @Override |
| | | protected void onCreate(@Nullable Bundle savedInstanceState) { |
| | | super.onCreate(savedInstanceState); |
| | | setTheme(R.style.NoAnimationTheme); |
| | | } |
| | | |
| | | @Override |
| | | protected void onDestroy() { |
| | | super.onDestroy(); |