Open In App

Introduction to Fragments | Android

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

Fragment is a piece of an activity that enables a more modular activity design. A fragment encapsulates functionality so that it is easier to reuse within activities and layouts. Android devices exist in a variety of screen sizes and densities. Fragments simplify the reuse of components in different layouts and their logic. You can build single-pane layouts for handsets (phones) and multi-pane layouts for tablets. You can also use fragments also to support different layouts for landscape and portrait orientation on a smartphone. The below image shows how two UI modules defined by fragments can be combined into one activity for a tablet design but separated for a handset design.

 

Fragment Life Cycle

Android fragments have their own life cycle very similar to an android activity. 

  • onAttach() : The fragment instance is associated with an activity instance. The fragment and the activity is not fully initialized. Typically you get in this method a reference to the activity which uses the fragment for further initialization work.
  • onCreate() : The system calls this method when creating the fragment. You should initialize essential components of the fragment that you want to retain when the fragment is paused or stopped, then resumed.
  • onCreateView() : The system calls this callback when it’s time for the fragment to draw its user interface for the first time. To draw a UI for your fragment, you must return a View component from this method that is the root of your fragment’s layout. You can return null if the fragment does not provide a UI.
  • onActivityCreated() : The onActivityCreated() is called after the onCreateView() method when the host activity is created. Activity and fragment instance have been created as well as the view hierarchy of the activity. At this point, view can be accessed with the findViewById() method. example. In this method you can instantiate objects which require a Context object
  • onStart() : The onStart() method is called once the fragment gets visible.
  • onResume() : Fragment becomes active.
  • onPause() : The system calls this method as the first indication that the user is leaving the fragment. This is usually where you should commit any changes that should be persisted beyond the current user session.
  • onStop() : Fragment going to be stopped by calling onStop()
  • onDestroyView() : Fragment view will destroy after call this method
  • onDestroy() :called to do final clean up of the fragment’s state but Not guaranteed to be called by the Android platform.

Types of Fragments

  • Single frame fragments : Single frame fragments are using for hand hold devices like mobiles, here we can show only one fragment as a view.
  • List fragments : fragments having special list view is called as list fragment
  • Fragments transaction : Using with fragment transaction. we can move one fragment to another fragment.

Handling the Fragment Lifecycle

A Fragment exist in three states:

  • Resumed : The fragment is visible in the running activity.
  • Paused : Another activity is in the foreground and has focus, but the activity in which this fragment lives is still visible (the foreground activity is partially transparent or doesn’t cover the entire screen).
  • Stopped : The fragment is not visible. Either the host activity has been stopped or the fragment has been removed from the activity but added to the back stack. A stopped fragment is still alive (all state and member information is retained by the system). However, it is no longer visible to the user and will be killed if the activity is killed.

The effect of the activity lifecycle on the fragment lifecycle :

Defining and using fragments To define a new fragment we either extend the android.app.Fragment class or one of its subclasses. 

Kotlin




//code conntribute by rony
package com.example.databinding.fragment
import android.os.Bundle
import androidx.fragment.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import com.example.databinding.R
class fragment2 : Fragment() {
    override fun onCreateView(
        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        // Inflate the layout for this fragment
        var view =inflater.inflate(R.layout.fragment_fragment2, container, false)
        return view
    }
}


Java




<div id="highlighter_963560" class="syntaxhighlighter nogutter  "><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td class="code"><div class="container"><div class="line number1 index0 alt2"><code class="plain">undefined</code></div></div></td></tr></tbody></table></div>


package com.saket.geeksforgeeks.demo;import android.app.Fragment;import android.os.Bundle;import android.view.LayoutInflater;import android.view.View;import android.view.ViewGroup;import android.widget.TextView;public class DetailFragment extends Fragment {        @Override    public View onCreateView(LayoutInflater inflater, ViewGroup container,                            Bundle savedInstanceState)        {                        View view = inflater.inflate(R.layout.fragment_rssitem_detail,                container, false);                            return view;        }    public void setText(String text)    {        TextView view = (TextView) getView().findViewById(R.id.detailsText);        view.setText(text);    }}

Fragment Transaction: While for an dynamic activity we are set buttons for an interactive UI. If we are set after clicking the button the fragment should appear then we have to get help from Fragment Manager. It handle all the fragment in an activity. We need to set fragment transaction with the help of fragment manager and and begin transaction, and then simply replace the layout of the fragment with desired place.

Java




/* this code is contributed by rohansadhukhan9 */
Button B = findViewById(R.id.button);
B.setOnClickListener(new View.OnClickListener) {
    @Override
    public void onClick(View v) {
        fragment f = new fragment();
        FragmentTransaction t = getSupportFragmentManeger().beginTransaction();
        t.replace(R.id.fragment_layout, f).commit();
    }
}


Kotlin




//code contribute by rony
val B = findViewById<Button>(R.id.button)
B.setOnClickListener {
          replace(fragment2())
      }
    }
    private fun replace(fragment: Fragment) {
        val fragmentManager=supportFragmentManager
        val fragmentTransaction=fragmentManager.beginTransaction()
        fragmentTransaction.replace(R.id.fragment_layout,fragment)
        fragmentTransaction.commit()
    }
}




Last Updated : 06 Apr, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments