Android Fragment uses full parsing

Android Fragment uses full parsing

The use of Fragment is a commonplace~~~

1. Overview

Since the introduction of Fragment in API 11, Fragment has become popular. Now most projects use Fragment to some extent. It is lighter, more suitable for screens, and more convenient for UI design. What is Fragment after all this talk?

Fragment: A fragment is an application's user interface and behavior that can be placed on an activity. At its core, it represents a specific operation or interface that runs on a larger activity. It represents an interface because it can be used as a View in a layout, and it represents a specific operation because it contains a life cycle for logical operations. In short, a fragment is a component with a life cycle. (Please correct me if you have any questions!)

Features of Fragment:

  • The life cycle must depend on the Activity. When the Activity is destroyed, all fragments will be destroyed. (I have stepped into this pit myself)
  • Lightweight, lightweight switching.
  • It is convenient to handle the interface differences between tablets and phones.

2. Inheritance structure and life cycle

Inheritance structure:

Fragment directly inherits Object and has four direct subclasses. I personally rarely use its subclasses.

life cycle:

The life cycle of Fragment is clearly marked in the figure, so I won't repeat it. This figure was collected a long time ago, and I have forgotten the original source. Thanks to the original author!

3. Basic use

1). Static use

Static use means that Fragment is used in the layout like a control.

TestFragment.java inherits Fragment and rewrites the onCreateView method

  1. /**
  2. * Created by magic on September 27, 2016.
  3. */
  4. public class TestFragment extends Fragment {
  5.  
  6. @Override
  7. public   View onCreateView(LayoutInflater inflater, ViewGroup container,
  8. Bundle savedInstanceState) {
  9. View   view = inflater.inflate(R.layout.fragment_main, container);
  10. ImageView img=(ImageView) view .findViewById(R.id.img);
  11. img.setOnClickListener(new View .OnClickListener() {
  12. @Override
  13. public void onClick( View v) {
  14. Toast.makeText(getActivity(), "This is a fragment" , Toast.LENGTH_SHORT).show();
  15. }
  16. });
  17. return   view ;
  18. }
  19.  
  20. }

fragment_main.xml

  1. <RelativeLayout xmlns:android= "http://schemas.android.com/apk/res/android"  
  2. xmlns:tools= "http://schemas.android.com/tools"  
  3. android:layout_width= "match_parent"  
  4. android:layout_height= "match_parent" >
  5.  
  6. <ImageView
  7. android:id= "@+id/img"  
  8. android:layout_width= "wrap_content"  
  9. android:layout_height= "wrap_content"  
  10. android:layout_centerInParent= "true"  
  11. android:src= "@drawable/img" />
  12.  
  13. </RelativeLayout>

MainActivity.java actually does nothing.

  1. /**
  2. * Created by magic on September 27, 2016.
  3. */
  4. public class MainActivity extends Activity {
  5.  
  6. @Override
  7. protected void onCreate(Bundle savedInstanceState) {
  8. super.onCreate(savedInstanceState);
  9. setContentView(R.layout.activity_main);
  10. }
  11.  
  12. }

activity_main.xml

  1. <RelativeLayout xmlns:android= "http://schemas.android.com/apk/res/android"  
  2. xmlns:tools= "http://schemas.android.com/tools"  
  3. android:layout_width= "match_parent"  
  4. android:layout_height= "match_parent" >
  5.  
  6. <fragment
  7. android:id= "@+id/id_fragment"  
  8. android:layout_width= "match_parent"  
  9. android:layout_height= "match_parent"  
  10. class= "com.magic.test_fragment.TestFragment" />
  11.  
  12. </RelativeLayout>

Use the fragment tag to add a fragment and specify the full class name of the fragment through class.

Operation effect:

[[177766]]

2) Dynamic use

Dynamic use means dynamically adding, replacing, removing, hiding, and displaying fragments in the fragment layout container.

CommonFragment.java

  1. /**
  2. * Created by magic on September 27, 2016. General Fragment
  3. */
  4. @SuppressLint( "ValidFragment" )
  5. public class CommonFragment extends Fragment {
  6.  
  7. String desc ;
  8.  
  9. public CommonFragment(String desc ) {
  10. super();
  11. this.desc = desc ;
  12. }
  13.  
  14. @Override
  15. public   View onCreateView(LayoutInflater inflater, ViewGroup container,
  16. Bundle savedInstanceState) {
  17. View   view = inflater.inflate(R.layout.fragment_common, container, false );
  18. TextView tev = (TextView) view .findViewById(R.id.tev);
  19. System.out .println ( desc );
  20. tev.setText( desc );
  21. return   view ;
  22. }
  23.  
  24. }

Set the content on the TextView by passing data through the constructor.

fragment_common.xml

  1. <?xml version= "1.0" encoding= "utf-8" ?>
  2. <LinearLayout xmlns:android= "http://schemas.android.com/apk/res/android"  
  3. android:layout_width= "match_parent"  
  4. android:layout_height= "match_parent"  
  5. android:orientation= "vertical" >
  6.  
  7. <TextView
  8. android:id= "@+id/tev"  
  9. android:layout_width= "match_parent"  
  10. android:layout_height= "match_parent"  
  11. android:gravity= "center"  
  12. android:textColor= "@color/mainOrange" />
  13.  
  14. </LinearLayout>

MainActivity.java

  1. /**
  2. * Created by magic on September 27, 2016. Bottom tab + fragment
  3. */
  4. public class MainActivity extends Activity implements OnClickListener {
  5.  
  6. TextView tev_tab1, tev_tab2, tev_tab3, tev_tab4;
  7.  
  8. // fragment transaction class
  9. FragmentTransaction ft;
  10. // fragment
  11. CommonFragment tabFragment1, tabFragment2, tabFragment3, tabFragment4;
  12.  
  13. @SuppressLint( "CommitTransaction" )
  14. @Override
  15. protected void onCreate(Bundle savedInstanceState) {
  16. super.onCreate(savedInstanceState);
  17. setContentView(R.layout.activity_main2);
  18. initView();
  19.  
  20. ft = getFragmentManager().beginTransaction();
  21.  
  22. tabFragment1 = new CommonFragment( "Tab1" );
  23. // Replace
  24. ft. replace (R.id.container, tabFragment1);
  25. // submit
  26. ft.commit ();
  27. }
  28.  
  29. // Initialize the control
  30. private void initView() {
  31. tev_tab1 = (TextView) findViewById(R.id.tev_tab1);
  32. tev_tab2 = (TextView) findViewById(R.id.tev_tab2);
  33. tev_tab3 = (TextView) findViewById(R.id.tev_tab3);
  34. tev_tab4 = (TextView) findViewById(R.id.tev_tab4);
  35.  
  36. tev_tab1.setOnClickListener(this);
  37. tev_tab2.setOnClickListener(this);
  38. tev_tab3.setOnClickListener(this);
  39. tev_tab4.setOnClickListener(this);
  40. }
  41.  
  42. @Override
  43. public void onClick( View v) {
  44.  
  45. FragmentTransaction ft = getFragmentManager().beginTransaction();
  46.  
  47. switch (v.getId()) {
  48. case R.id.tev_tab1:
  49. ft. replace (R.id.container, tabFragment1);
  50. break;
  51. case R.id.tev_tab2:
  52. if (tabFragment2 == null ) {
  53. tabFragment2 = new CommonFragment( "Tab2" );
  54. }
  55. ft. replace (R.id.container, tabFragment2);
  56. break;
  57. case R.id.tev_tab3:
  58. if (tabFragment3 == null ) {
  59. tabFragment3 = new CommonFragment( "Tab3" );
  60. }
  61. ft. replace (R.id.container, tabFragment3);
  62. break;
  63. case R.id.tev_tab4:
  64. if (tabFragment4 == null ) {
  65. tabFragment4 = new CommonFragment( "Tab4" );
  66. }
  67. ft. replace (R.id.container, tabFragment4);
  68. break;
  69. }
  70. // submit
  71. ft.commit ();
  72. }
  73.  
  74. }

activity_main2.xml

  1. <?xml version= "1.0" encoding= "utf-8" ?>
  2. <LinearLayout xmlns:android= "http://schemas.android.com/apk/res/android"  
  3. android:layout_width= "match_parent"  
  4. android:layout_height= "match_parent"  
  5. android:orientation= "vertical" >
  6.  
  7. <FrameLayout
  8. android:id= "@+id/container"  
  9. android:layout_width= "match_parent"  
  10. android:layout_height= "0dp"  
  11. android:layout_weight= "1" />
  12.  
  13. <LinearLayout
  14. android:layout_width= "match_parent"  
  15. android:layout_height= "50dp"  
  16. android:background= "@color/mainTextBlack"  
  17. android:orientation= "horizontal" >
  18.  
  19. <TextView
  20. android:id= "@+id/tev_tab1"  
  21. android:layout_width= "0dp"  
  22. android:layout_height= "match_parent"  
  23. android:layout_weight= "1"  
  24. android:gravity= "center"  
  25. android:text= "Tab1"  
  26. android:textColor= "@color/white" />
  27.  
  28. <TextView
  29. android:id= "@+id/tev_tab2"  
  30. android:layout_width= "0dp"  
  31. android:layout_height= "match_parent"  
  32. android:layout_weight= "1"  
  33. android:gravity= "center"  
  34. android:text= "Tab2"  
  35. android:textColor= "@color/white" />
  36.  
  37. <TextView
  38. android:id= "@+id/tev_tab3"  
  39. android:layout_width= "0dp"  
  40. android:layout_height= "match_parent"  
  41. android:layout_weight= "1"  
  42. android:gravity= "center"  
  43. android:text= "Tab3"  
  44. android:textColor= "@color/white" />
  45.  
  46. <TextView
  47. android:id= "@+id/tev_tab4"  
  48. android:layout_width= "0dp"  
  49. android:layout_height= "match_parent"  
  50. android:layout_weight= "1"  
  51. android:gravity= "center"  
  52. android:text= "Tab4"  
  53. android:textColor= "@color/white" />
  54. </LinearLayout>
  55.  
  56. </LinearLayout>

Create a Fragment container through the FrameLayout tag, and add listener events to the four tabs at the bottom to dynamically replace the Fragment in the FrameLayout container.

Operation effect:

4. Related classes and main methods

FragmentManager fragment manager, an abstract class, is implemented in the FragmentManagerImpl class in Android-support-v4.jar.

  1. // Get the FragmentManager object
  2. FragmentManager manager = getFragmentManager();

FragmentTransaction is an abstract class, which is implemented in the BackStackRecord class. The final implementation of operations such as adding, deleting, and replacing is still in the FragmentManagerImpl class.

  1. // Get the FragmentTransaction object
  2. FragmentTransaction transaction = manager.beginTransaction();
  3.  
  4. // Add fragment
  5. transaction.add ( ) ;
  6. transaction .add (containerViewId, fragment, tag) ;
  7. // Replace the existing fragment that will be added to the container
  8. transaction.replace ( ) ;
  9. // Delete an existing fragment
  10. transaction .remove();
  11.  
  12. // Save the current fragment data to avoid view redrawing
  13. transaction .hide();
  14. // Show the previously hidden fragment
  15. transaction .show();
  16. // These two methods will trigger the onHiddenChanged(boolean hidden) callback in the fragment
  17.  
  18. // Display the previous data The instance will not be destroyed, but the view hierarchy will still be destroyed, that is, onDestoryView and onCreateView will be called
  19. transaction .addToBackStack( null );
  20. //Transaction commit
  21. transaction . commit ();

Fragment Fragment Class

  1. Fragment fragment = new Fragment();
  2.  
  3. // Return the Activity currently associated with this fragment
  4. fragment.getActivity();
  5. //Set data
  6. fragment.setArguments(new Bundle());
  7. // Get data
  8. fragment.getArguments();
  9. // Returns the FragmentManager that acts on this fragment
  10. fragment.getFragmentManager();
  11. // Get the tag name
  12. fragment.getTag();
  13.  
  14. //Callback when the hidden state changes
  15. // onHiddenChanged( true );

If you are interested, you can go to Read The Fucking Source. Anyway, I find it quite confusing...

5. Others

To be continued…

<<:  Android 7.1 official version is finally here, domestic users are crying

>>:  How to use ADB, the Android development debugging tool

Recommend

2019 Social Marketing Promotion Report!

The editor often says that to do marketing, it is...

Why is Android development the most sought-after?

What skills do you need to become an Android deve...

QQ promotes QQ public account platform, things you must know!

Quietly, QQ launched the QQ public account platfo...

How does Metaverse Marketing change the advertising industry?

With Facebook changing its name to Meta, the conc...

Advertising landing page optimization rules!

We all know that the key to a landing page is tha...

How do companies gain fans crazily on Douyin?

Tik Tok has a strong ability to bring goods, spre...

How to get on the charts on iOS platform? 10 App Store Survival Guides

Obtaining App Store qualifications has never been...

How did Santa Claus become a super marketing IP?

Santa Claus is itself a world-class super IP. Whe...

4 Steps to Reconstruct Growth Hacking Logic

Even the new graduates I teach know the AARRR mod...

Lu Cheng's psychological lesson on parenting and self-healing

Lu Cheng's parenting and self-healing psychol...

From a product perspective, how to write 10W+ high-quality articles

Nowadays, public accounts have become one of the ...

Juzi Classroom's "Lesson Compass" teaches you how to teach

Course Contents: 1. Course Introduction 2. What t...