Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
14 views4 pages

3 Fragments Navigation

Fragments are modular UI sections with a lifecycle similar to activities and can be reused across layouts. The Jetpack Navigation Component simplifies navigation through a Navigation Graph XML and manages actions with a NavController, while communication between fragments can be handled via interfaces or a shared ViewModel. Safe Args allows for type-safe argument passing in navigation actions.

Uploaded by

rohit.mybox
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views4 pages

3 Fragments Navigation

Fragments are modular UI sections with a lifecycle similar to activities and can be reused across layouts. The Jetpack Navigation Component simplifies navigation through a Navigation Graph XML and manages actions with a NavController, while communication between fragments can be handled via interfaces or a shared ViewModel. Safe Args allows for type-safe argument passing in navigation actions.

Uploaded by

rohit.mybox
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

FRAGMENTS AND NAVIGATION

Fragments are modular sections of UI in an activity.


Jetpack Navigation Component simplifies app navigation.
1. FRAGMENTS
- Lifecycle similar to Activity
- Reusable across different layouts
- Transaction:
getSupportFragmentManager().beginTransaction()
.replace(R.id.container, new MyFragment())
.commit();
2. COMMUNICATION
- Use interfaces or shared ViewModel for data sharing
- FragmentManager manages back stack
3. NAVIGATION COMPONENT
- Navigation Graph XML defines destinations
- NavController: Manages navigation actions
- Safe Args: Type-safe argument passing

You might also like