Fix bottom nav being visible when resuming app (fixes #6012)

(cherry picked from commit 4a27f0546c94f178bdd4bc2a7f54d2f27dbb91fa)
This commit is contained in:
arkon 2022-01-09 10:26:41 -05:00 committed by Jobobby04
parent 6a82d57957
commit b4c9ff4cae
3 changed files with 5 additions and 6 deletions

View File

@ -20,10 +20,10 @@ object NotificationHandler {
*/
internal fun openDownloadManagerPendingActivity(context: Context): PendingIntent {
val intent = Intent(context, MainActivity::class.java).apply {
flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_ACTIVITY_REORDER_TO_FRONT
flags = Intent.FLAG_ACTIVITY_CLEAR_TOP or Intent.FLAG_ACTIVITY_SINGLE_TOP
action = MainActivity.SHORTCUT_DOWNLOADS
}
return PendingIntent.getActivity(context, 0, intent, 0)
return PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT)
}
/**

View File

@ -255,8 +255,6 @@ class MainActivity : BaseViewBindingActivity<MainActivityBinding>() {
}
)
syncActivityViewWithController()
if (savedInstanceState == null) {
// Reset Incognito Mode on relaunch
preferences.incognitoMode().set(false)
@ -393,6 +391,7 @@ class MainActivity : BaseViewBindingActivity<MainActivityBinding>() {
override fun onResume() {
super.onResume()
checkForUpdates()
syncActivityViewWithController()
}
private fun checkForUpdates() {

View File

@ -89,7 +89,7 @@ class TachiyomiBottomNavigationView @JvmOverloads constructor(
*
* @param animate True if slide up should be animated
*/
fun slideUp(animate: Boolean = true) {
fun slideUp(animate: Boolean = true) = post {
currentAnimator?.cancel()
clearAnimation()
@ -106,7 +106,7 @@ class TachiyomiBottomNavigationView @JvmOverloads constructor(
*
* @param animate True if slide down should be animated
*/
fun slideDown(animate: Boolean = true) {
fun slideDown(animate: Boolean = true) = post {
currentAnimator?.cancel()
clearAnimation()