ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

BackPress handling in Android Fragments, The old and the new! + Compose

Reza
ProAndroidDev
Published in
3 min readMar 18, 2020

How hard it was to handle BackPress in fragments before!

2024 Update, Scroll all the way down for Jetpack Compose implementation!

The old:

Interface that every fragment willing to intercept backPressed() event needs to implement
Fragment that needs to handle backPressed() event
Logic to handle when backPress is clicked in SearchFragment
Structure of MainActivity’s onBackPressed() function
Kotlin function extension to get the fragment on top

The new:

Demonstration of the recent method of backpress handling in fragments

Jetpack Compose:

import androidx.activity.compose.BackHandler
BackHandler {
//Handle back press here
}
val isDrawerClosed by remember(drawerState.currentValue) {
mutableStateOf(drawerState.currentValue == DrawerValue.Closed)
}
BackHandler(enabled = isDrawerClosed) {
drawerState.setValue(DrawerValue.Open)
}

Great job on making it to the end of this article! 💪

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Responses (11)

Write a response