This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Source: https://stackoverflow.com/a/11079475 | |
// Add below code to styles.xml | |
<style name="noAnimTheme" parent="AppTheme.NoActionBar"> | |
<item name="android:windowAnimationStyle">@null</item> | |
</style> | |
// Set below theme for Activity in Manifest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Close all previous activities | |
// https://stackoverflow.com/questions/6330260/finish-all-previous-activities | |
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK); | |
// 10-09-18 - Not working in App Lock. | |
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); |
NewerOlder