In Android application development, various components are used to build the user interface (UI). Among these, the Fragment plays an important role alongside the Activity. In this course, we will explore the basic concepts, usage, advantages, and example code of fragments in depth, including how to apply fragments in practice.
1. What is a Fragment?
A fragment is a module that makes up part of the UI. Fragments, which have several advantages, help to manage complex UIs more easily and have a lighter structure than activities. Fragments can be reused multiple times within an activity and provide the flexibility to be configured differently based on various screen sizes and orientations (portrait/landscape).
2. Features of Fragments
- Reusability: The same fragment can be reused in multiple activities, reducing code duplication.
- Modularity: Each part of the UI can be modularized into fragments, creating an easily manageable structure.
- Dynamic UI: Fragments can be added or removed at runtime, allowing for dynamic management of the UI.
- Lifecycle Management: Fragments have their own lifecycle, which helps in easily managing the state of the user interface.
3. Lifecycle of a Fragment
Fragments manage their lifecycle separately from activities, but they are dependent on the activity’s lifecycle. Here are the main lifecycle methods of a fragment:
- onAttach: Called when the fragment is attached to the activity.
- onCreate: Called when the fragment is first created in the lifecycle.
- onCreateView: Called to create the UI for the fragment.
- onActivityCreated: Called when the activity and fragment initialization is complete.
- onStart: Called when the fragment is ready to be displayed on the screen.
- onResume: Called when the fragment is ready to interact with the user.
- onPause: Called when the interaction with the user is temporarily paused.
- onStop: Called when the fragment is no longer visible on the screen.
- onDestroyView: Called when the UI of the fragment is removed.
- onDetach: Called when the fragment is detached from the activity.
4. Creating a Fragment
The process of creating a fragment is very simple. First, define the fragment class, then create an XML layout file to set up the UI. Let’s create a fragment in the example below.
4.1. Creating a Fragment Class
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.fragment.app.Fragment;
public class MyFragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_my, container, false);
}
}
4.2. Creating an XML Layout File
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello from MyFragment!" />
</LinearLayout>
5. Adding a Fragment to an Activity
After creating a fragment, you need to add it to the activity. You can add the fragment either dynamically or statically in the XML layout. The example below shows how to add a fragment dynamically.
5.1. Creating a Space for the Fragment in the Activity Layout
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent" /
>
5.2. Adding the Fragment in the Activity Class
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import androidx.fragment.app.FragmentTransaction;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
MyFragment myFragment = new MyFragment();
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.add(R.id.fragment_container, myFragment);
transaction.commit();
}
}
6. Passing Data Between Fragments
You can use a Bundle to pass data between fragments. This method allows you to pass data when creating the fragment from the activity. The example below shows how to pass data to a fragment.
6.1. Passing Data to a Fragment
public static MyFragment newInstance(String data) {
MyFragment fragment = new MyFragment();
Bundle args = new Bundle();
args.putString("key", data);
fragment.setArguments(args);
return fragment;
}
6.2. Receiving Data Inside the Fragment
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getArguments() != null) {
String data = getArguments().getString("key");
// Use the data to update the UI
}
}
7. Managing Fragment Lifecycle
Managing the lifecycle of a fragment is very important. It’s necessary to update the UI or fetch data at the right moments. For example, you can run code to fetch data when the user is ready to view the fragment.
@Override
public void onStart() {
super.onStart();
// Fetch data when the fragment is visible on the screen
loadData();
}
8. Adding Fragments to the Back Stack
The back stack feature helps users easily return to a previous fragment while navigating through fragments. You can activate this by using the `addToBackStack()` method when adding a fragment.
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
transaction.add(R.id.fragment_container, myFragment);
transaction.addToBackStack(null);
transaction.commit();
9. Advantages and Disadvantages of Fragments
9.1. Advantages
- Improved maintainability with a modular UI.
- Dynamic UI can adapt to various screens.
- Reusable, reducing code duplication.
9.2. Disadvantages
- Need to manage lifecycle between fragments and activities carefully.
- Creating a complex UI structure can make management more difficult.
10. Conclusion
Fragments are very useful components in Android application development. They focus on modularizing the UI, enhancing reusability, and providing an interesting user experience suitable for various screen sizes. Based on the contents covered in this tutorial, we encourage you to effectively utilize fragments in your Android applications.