(5)Fragment回退栈的管理
程序员文章站
2022-06-08 12:54:03
...
类似与Android系统为Activity维护一个任务栈,我们也可以通过Activity维护一个回退栈来保存每次Fragment事务发生的变化。如果你将Fragment任务添加到回退栈,当用户点击后退按钮时,将看到上一次的保存的Fragment。一旦Fragment完全从后退栈中弹出,用户再次点击后退键,则退出当前Activity。
1.元素
创建一个Activity页面,共有三个Fragment,FragmentOne中包含一个输入框,以及跳转到FragmentTwo的按钮;FragmentTwo中包含一个输入框和一个跳转到FragmentThree的按钮,Activity中的内容通过动态修改显示内容加载不同的Fragment
点击第一个按钮,切换到第二个界面,点击第二个按钮,切换到第三个界面,然后点击Back键依次回退。
这里是Fragment实现的,用户点击Back,实际是Fragment回退栈不断的弹栈。如何添加一个Fragment事务到回退栈:
FragmentTransaction.addToBackStack(String)
演示图如下:
2.代码
activity_test_fragment_back_stack.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="xzy.com.myfragmentdemo.backstack.TestFragmentBackStackActivity">
<FrameLayout
android:id="@+id/fl_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</android.support.constraint.ConstraintLayout>
TestFragmentBackStackActivity.java
package xzy.com.myfragmentdemo.backstack;
import android.app.Activity;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.widget.FrameLayout;
import xzy.com.myfragmentdemo.R;
public class TestFragmentBackStackActivity extends Activity {
private FrameLayout mFrameLayoutContent;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test_fragment_back_stack);
mFrameLayoutContent = (FrameLayout) findViewById(R.id.fl_content);
initPage();
}
public void initPage() {
FragmentOne fragmentOne = new FragmentOne();
FragmentManager fragmentManager = getFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
fragmentTransaction.add(R.id.fl_content, fragmentOne);
fragmentTransaction.commit();
}
public static void startActivity(Context context) {
Intent intent = new Intent(context, TestFragmentBackStackActivity.class);
context.startActivity(intent);
}
}
FragmentOne.java
package xzy.com.myfragmentdemo.backstack;
import android.app.Fragment;
import android.os.Bundle;
import android.support.v4.app.FragmentTransaction;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import xzy.com.myfragmentdemo.R;
/**
* A simple {@link Fragment} subclass.
*/
public class FragmentOne extends Fragment {
public FragmentOne() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_fragment_one, container, false);
view.findViewById(R.id.btn_goto_fragment2).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
FragmentTwo fragmentTwo = new FragmentTwo();
android.app.FragmentTransaction ft = getFragmentManager().beginTransaction();
ft.replace(R.id.fl_content, fragmentTwo);
ft.addToBackStack(null);//添加到回退栈
ft.commit();
}
});
return view;
}
}
我们在点击FragmentOne中的按钮时,使用了replace方法,replace是remove和add的合体,并且如果不添加事务到回退栈,前一个Fragment实例会被销毁。这里很明显,我们调用ft.addToBackStack(null);将当前的事务添加到了回退栈,所以FragmentOne实例不会被销毁,但是视图层次依然会被销毁,即会调用onDestoryView和onCreateView,证据就是:仔细看上面的效果图,我们在跳转前在文本框输入的内容,在用户Back得到第一个界面的时候不见了。
FragmentTwo.java
package xzy.com.myfragmentdemo.backstack;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import xzy.com.myfragmentdemo.R;
/**
* A simple {@link Fragment} subclass.
*/
public class FragmentTwo extends Fragment {
public FragmentTwo() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_fragment_two, container, false);
view.findViewById(R.id.btn_goto_fragment3).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
android.app.FragmentTransaction ft = getFragmentManager().beginTransaction();
FragmentThree fragmentThree = new FragmentThree();
ft.hide(FragmentTwo.this);
ft.add(R.id.fl_content, fragmentThree);
//ft.replace(R.id.fl_content,fragmentThree);
ft.addToBackStack(null);//添加到回退栈
ft.commit();
}
});
return view;
}
}
这里点击时,我们没有使用replace,而是先隐藏了当前的Fragment,然后添加了FragmentThree的实例,最后将事务添加到回退栈。这样做的目的是为了给大家提供一种方案:如果不希望视图重绘该怎么做,请再次仔细看效果图,我们在FragmentTwo的EditText填写的内容,用户Back回来时,数据还在~~~
FragmentThree.java
package xzy.com.myfragmentdemo.backstack;
import android.os.Bundle;
import android.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;
import xzy.com.myfragmentdemo.R;
/**
* A simple {@link Fragment} subclass.
*/
public class FragmentThree extends Fragment {
public FragmentThree() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_fragment_three, container, false);
view.findViewById(R.id.btn_toast).setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(getActivity(), "a button in fragment three", Toast.LENGTH_SHORT).show();
}
});
return view;
}
}
好了,经过上面的介绍,应该已经知道Fragment回退栈是怎么一回事了,以及hide,replace等各自的应用的场景。以上代码纯粹为了展示回退栈的应用,不具有实际使用意义。
上一篇: 0.0
推荐阅读
-
基于HTML5新特性Mutation Observer实现编辑器的撤销和回退操作
-
Angular5中状态管理的实现
-
ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的后台管理系统之前端页面框架构建源码分享
-
ASP.NET MVC5网站开发之用户角色的后台管理1(七)
-
构建ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的后台管理系统(24)-权限管理系统-将权限授权给角色
-
docker(5):数据的管理
-
基于HTML5新特性Mutation Observer实现编辑器的撤销和回退操作
-
Angular5中状态管理的实现
-
构建ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的后台管理系统(26)-权限管理系统-分配角色给用户
-
5个有效和常用的关于管理好网站的习惯、经验