- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
Android fragment 生命周期表明,当一个 fragment 被添加到 backstack 然后被移除/替换时,onDestroyView()
被调用,稍后,当 fragment 从 backstack 返回到布局时, onCreateView()
被调用。
根据我的理解,这意味着 fragment 的 View 正在被销毁并重新创建。如果用户在 fragment A 的 EditText
中输入文本,然后转到 fragment B,然后返回到 A,当 fragment 返回时,EditText
的内容将被已删除。
然而,这并没有发生在下面的代码中;谁能解释为什么?我已经验证正在调用 FragmentA
的 onDestroyView()
。
public class MainActivity extends FragmentActivity {
private Fragment currentFragment = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null) {
addFragment(new FragmentA());
}
}
public void setCurrentFragment(Fragment fragment) {
this.currentFragment = fragment;
}
@Override
public void onBackPressed() {
if (currentFragment instanceof FragmentB) {
getSupportFragmentManager().popBackStackImmediate();
} else {
super.onBackPressed();
}
}
public void addFragment(Fragment fragment) {
getSupportFragmentManager().beginTransaction().replace(R.id.container, fragment).addToBackStack(null).commit();
setCurrentFragment(fragment);
}
}
public class FragmentA extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_a, container, false);
final EditText editText = (EditText)view.findViewById(R.id.editText);
Button button = (Button)view.findViewById(R.id.button);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
FragmentB fragmentB = new FragmentB();
Bundle arguments = new Bundle();
arguments.putString("text", editText.getText().toString());
fragmentB.setArguments(arguments);
((MainActivity)getActivity()).addFragment(fragmentB);
}
});
return view;
}
@Override
public void onDestroyView() {
super.onDestroyView();
Log.d("Tag", "FragmentA.onDestroyView() has been called.");
}
}
public class FragmentB extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_b, container, false);
TextView textView = (TextView)view.findViewById(R.id.textView);
textView.setText(getArguments().getString("text"));
return view;
}
}
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.fragmenttest.MainActivity"
tools:ignore="MergeRootFrame" />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
最佳答案
返回堆栈中的 fragment 在 Bundle
中保留它们的状态。这包括具有 EditText
等当前内容的 View 层次结构状态。
关于android - 调用了 Fragment 的 onDestroyView 但 View 未被销毁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28344678/
应客户的要求,我尝试使用 Android 的 FragmentManager/FragmentTransaction 框架和 setCustomAnimations() 方法实现过渡动画。 一切正常,
当您创建一个 ListView 时,我们使用 onCreateView 方法。当 View (项目)被销毁时,是否有任何方法被调用? 我想销毁 moPub 广告 View 。 谢谢。 最佳答案 Lis
我在这里处理奇怪的 fragment 生命周期行为。 我有一个托管两个 fragment 的 Activity :CityFragment - 显示城市列表和 WeatherFragment - 显示
我的应用程序有 2 个选项卡,运行起来非常棒。 但是今天我试图扩展我的标签栏并添加了第三个标签。 当我点击第三个选项卡时,它会破坏第一个选项卡 fragment ,并在第一个选项卡 fragment
我为我的按钮设置监听器: View onCreateView(...) { ... btn.setOnClickListener(new View.OnClickListener(
我的 APP 确实有多个 fragment 和 Activity ,这些 Activity 中的大多数都有不同的 fragment ,这是为了让我的组件更容易重用。当我将其他 Activity 加载到
我有一个 FrameLayout 容器,当从抽屉导航中选择一个项目时,我使用 replace 方法在其中放置一个 fragment 。 getSupportFragmentManager().begi
想象一下这个场景:我在 Pager 中有一个 Fragment。我尝试切换到其他应用程序,以便拥有我的寻呼机(和我的 fragment )的 Activity 最终将停止并暂时销毁。 所以,当我回到我
我遇到一个问题,在 onDestroyView 之后调用 ListFragment.onListItemClick。我在现场收到很多错误报告(大约 1000 个活跃用户每天 10-20 个),但我发现
当您导航到不同的 fragment 时,立即调用 onDestroyView() 这是正常行为吗? 我调用以下方法进行导航: findNavController().navigate(R.id.act
我有一个主要的Activity,其中包含一个带有4个选项卡的ViewPager。每个选项卡内部都有一个fragment。我在主Activity 上实现了ActionBar.TabListener。在
我正在使用 Mosby Android 应用程序中的模型- View -Presenter 库。在一个特定的 View 中,我正在使用 Bottom Navigation用 Design Suppor
我有一个 ListFragment,我想定期更新它。更新过程本身非常复杂,可能需要一些时间。这就是为什么我创建了一个线程,在上一次更新完成后 5 秒执行新的更新。然后我创建一个处理程序来更新列表,同时
Android 文档讨论了在某些情况下无法调用 onStop 和 onDestroy 的内容,但我没有发现任何与 fragment 相同的内容。 onPause、onStop、onDestroyVie
Android fragment 生命周期表明,当一个 fragment 被添加到 backstack 然后被移除/替换时,onDestroyView() 被调用,稍后,当 fragment 从 ba
我知道将 fragment 事务添加到 backstack然后从那个 fragment 移动到另一个 fragment ,reference of the previous fragment's vi
我在我的应用程序中使用实时数据进行所有网络调用和响应处理。 在其中一种情况下,我的回收者 View 正在其 View 持有者的 onBind 中加载一些数据,并且响应正在更新 UI。为此,我必须向观察
这个问题在这里已经有了答案: How to use Fragments in Android (4 个答案) 关闭 1 年前。 我的应用程序中有一个名为 HomeFragment 的 fragmen
这个问题在这里已经有了答案: How to use Fragments in Android (4 个答案) 关闭 1 年前。 我的应用程序中有一个名为 HomeFragment 的 fragmen
我是一名优秀的程序员,十分优秀!