<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本篇我們就來講講Fragment管理中的 Add() 方法
在我們動態的新增、管理Fragment中,Add屬於最基礎的方法了; 用法也很簡單,如下就是向Activity新增一個Fragment:
getSupportFragmentManager().beginTransaction().add(R.id.fragmenta,new FragmentA()).commit();
一般時候我們使用到Fragment的時候,都是不止一個,比如微信介面,底部導航有四個按鈕,分別對應不同的四個Fragment,像這種的每點選一次底部按鈕就切換一下介面的話,我們就可以使用Add()外加hide和show進行組合
下面我們簡單實現一下,這裡我們就弄兩個Fragment,
這裡我們的MainActivity的佈局如下:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="com.shaoen.lenovo.myapplication.MainActivity"> <FrameLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:id="@+id/fragmenta"/> <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content"> <Button android:id="@+id/fragmenta_button" android:text="FragmentA" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1"/> <Button android:id="@+id/fragmentb_button" android:text="FragmentB" android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="1"/> </LinearLayout> </LinearLayout>
下面看MainActivity的內容:
package com.shaoen.lenovo.myapplication; import android.support.v4.app.Fragment; import android.support.v4.app.FragmentManager; import android.support.v4.app.FragmentTransaction; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.Button; import com.shaoen.lenovo.myapplication.fragment.FragmentA; import com.shaoen.lenovo.myapplication.fragment.FragmentB; public class MainActivity extends AppCompatActivity implements View.OnClickListener{ private String TAG=MainActivity.class.getSimpleName(); private Button fragmentA_Button; private Button fragmentB_Button; private FragmentTransaction transaction; private FragmentManager fragmentManager; private Fragment fragment; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Log.i(TAG,"onCreate--執行了"); setContentView(R.layout.activity_main); fragmentManager=getSupportFragmentManager(); transaction= fragmentManager.beginTransaction(); fragment=new FragmentA(); transaction.add(R.id.fragmenta,fragment,"FragmentA").commit(); fragmentA_Button=(Button) findViewById(R.id.fragmenta_button); fragmentB_Button=(Button) findViewById(R.id.fragmentb_button); fragmentA_Button.setOnClickListener(this); fragmentB_Button.setOnClickListener(this); } @Override protected void onStart() { super.onStart(); Log.i(TAG,"onStart--執行了"); } @Override protected void onResume() { super.onResume(); Log.i(TAG,"onResume--執行了"); } @Override protected void onPause() { super.onPause(); Log.i(TAG,"onPause--執行了"); } @Override protected void onStop() { super.onStop(); Log.i(TAG,"onStop--執行了"); } @Override protected void onDestroy() { super.onDestroy(); Log.i(TAG,"onDestroy--執行了"); } @Override public void onClick(View v) { transaction= fragmentManager.beginTransaction(); switch (v.getId()){ case R.id.fragmenta_button: if (fragment!=null) transaction.hide(fragment); fragment= fragmentManager.findFragmentByTag("FragmentA"); if (fragment!=null){ transaction.show(fragment); } else { fragment=new FragmentA(); transaction.add(R.id.fragmenta,fragment,"FragmentA").commit(); } break; case R.id.fragmentb_button: if (fragment!=null) transaction.hide(fragment); fragment= fragmentManager.findFragmentByTag("FragmentB"); if (fragment!=null){ transaction.show(fragment); } else { fragment=new FragmentB(); transaction.add(R.id.fragmenta,fragment,"FragmentB").commit(); } break; } } }
這裡我們寫的比較簡單,主要是為了看一下他們的執行生命週期,在這裡我把所以log都列印出來了
剛開始執行時的log如下:
I/MainActivity: onCreate--執行了
I/FragmentA: onAttach--執行了
I/FragmentA: onCreate--執行了
I/FragmentA: onCreateView--執行了
I/FragmentA: onActivityCreated--執行了
I/FragmentA: onStart--執行了
I/MainActivity: onStart--執行了
I/MainActivity: onResume--執行了
I/FragmentA: onResume--執行了
此時我們點選FragmentB按鈕;
I/FragmentB: onAttach--執行了
I/FragmentB: onCreate--執行了
I/FragmentB: onCreateView--執行了
I/FragmentB: onActivityCreated--執行了
I/FragmentB: onStart--執行了
I/FragmentB: onResume--執行了
然後我們在反覆點選FragmentA和FragmentB按鈕,發現沒有任何log列印,此時證明FragmentA和FragmentB通過hide和show方法進行切換時,都只會初始化一次,
下面我們看向replace這個方法
replace:
首先replace方法,其實是remove和add方法的組合; remove就是將一個Fragment從FragmentManager中刪除,如果我們切換下一個Fragment時,上一個Fragment不需要了,可以直接使用replace,如果我們還需要的話,API中也提供了相應的方法,那就是加入回退棧addToBackStack()
下面我們把MainActivity中的程式碼改一下:
@Override public void onClick(View v) { transaction= fragmentManager.beginTransaction(); switch (v.getId()){ case R.id.fragmenta_button: if (fragment!=null) transaction.hide(fragment); fragment= fragmentManager.findFragmentByTag("FragmentA"); if (fragment!=null){ Log.i(TAG,"fragment不為空"); transaction.show(fragment); } else { Log.i(TAG,"fragment為空"); fragment=new FragmentA(); transaction.replace(R.id.fragmenta,fragment,"FragmentA").addToBackStack("FragmentA").commit(); } break; case R.id.fragmentb_button: if (fragment!=null) transaction.hide(fragment); fragment= fragmentManager.findFragmentByTag("FragmentB"); if (fragment!=null){ Log.i(TAG,"fragment不為空"); transaction.show(fragment); } else { Log.i(TAG,"fragment為空"); fragment=new FragmentB(); transaction.replace(R.id.fragmenta,fragment,"FragmentB").addToBackStack("FragmentB").commit(); } break; } }
這裡我們就改了一下OnClick中的程式碼,這時我們再列印一下log看看:
首先初始化時是一致的:
這裡寫程式碼片
此時我們點選FragmentB:
12-18 21:48:14.227 21081-21081/com.shaoen.lenovo.myapplication I/MainActivity: fragment為空
12-18 21:48:14.228 21081-21081/com.shaoen.lenovo.myapplication I/FragmentA: onPause--執行了
12-18 21:48:14.228 21081-21081/com.shaoen.lenovo.myapplication I/FragmentA: onStop--執行了
12-18 21:48:14.228 21081-21081/com.shaoen.lenovo.myapplication I/FragmentA: onDestroyView--執行了
12-18 21:48:14.229 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onAttach--執行了
12-18 21:48:14.229 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onCreate--執行了
12-18 21:48:14.250 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onCreateView--執行了
12-18 21:48:14.250 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onActivityCreated--執行了
12-18 21:48:14.250 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onStart--執行了
12-18 21:48:14.250 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onResume--執行了
我們發現Fragment呼叫了destroy方法,此時我們再點選FragmentA:
I/MainActivity: fragment不為空
此時發現FragmentA沒有切換過來,這是因為,我們在FragmentManager中找到了FragmentA的範例,但是此時,FragmentA的介面已經被銷燬了,所以我們看見的還是FragmentB,此時我們的OnClick改成如下:
@Override public void onClick(View v) { transaction= fragmentManager.beginTransaction(); switch (v.getId()){ case R.id.fragmenta_button: fragment=new FragmentA(); transaction.replace(R.id.fragmenta,fragment,"FragmentA").addToBackStack("FragmentA").commit(); break; case R.id.fragmentb_button: fragment=new FragmentB(); transaction.replace(R.id.fragmenta,fragment,"FragmentB").addToBackStack("FragmentB").commit(); break; } }
這時再列印一下log,
12-18 21:48:14.228 21081-21081/com.shaoen.lenovo.myapplication I/FragmentA: onPause--執行了
12-18 21:48:14.228 21081-21081/com.shaoen.lenovo.myapplication I/FragmentA: onStop--執行了
12-18 21:48:14.228 21081-21081/com.shaoen.lenovo.myapplication I/FragmentA: onDestroyView--執行了
12-18 21:48:14.229 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onAttach--執行了
12-18 21:48:14.229 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onCreate--執行了
12-18 21:48:14.250 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onCreateView--執行了
12-18 21:48:14.250 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onActivityCreated--執行了
12-18 21:48:14.250 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onStart--執行了
12-18 21:48:14.250 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onResume--執行了
12-18 21:48:14.228 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onPause--執行了
12-18 21:48:14.228 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onStop--執行了
12-18 21:48:14.228 21081-21081/com.shaoen.lenovo.myapplication I/FragmentB: onDestroyView--執行了
12-18 21:48:14.229 21081-21081/com.shaoen.lenovo.myapplication I/FragmentA: onAttach--執行了
12-18 21:48:14.229 21081-21081/com.shaoen.lenovo.myapplication I/FragmentA: onCreate--執行了
12-18 21:48:14.250 21081-21081/com.shaoen.lenovo.myapplication I/FragmentA: onCreateView--執行了
12-18 21:48:14.250 21081-21081/com.shaoen.lenovo.myapplication I/FragmentA: onActivityCreated--執行了
12-18 21:48:14.250 21081-21081/com.shaoen.lenovo.myapplication I/FragmentA: onStart--執行了
12-18 21:48:14.250 21081-21081/com.shaoen.lenovo.myapplication I/FragmentA: onResume--執行了
此時發現每次切換時,都會呼叫Fragment都會重新呼叫onCreateView()到onDestroyView()的所有方法,其實就是Fragment的佈局層整個銷燬到重建的過程
注: 當我們進行Fragment巢狀時,如果我們點選返回鍵,不想回到上一個Fragment,而想直接回到更往前一個,或者更往前的Fragment,我們可以使用FragmentManager.popBackStackImmediate (String tag, int flags)方法,彈出TAG為tag的Fragment,同時把此Fragment以上的Fragment全都彈出(彈出回退棧,即徹底銷燬,detach)
到此這篇關於Android Fragment原始碼分析Add方法的文章就介紹到這了,更多相關Android Fragment內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45