gpt4 book ai didi

android - 调用了 Fragment 的 onDestroyView 但 View 未被销毁

转载 作者:可可西里 更新时间:2023-11-01 18:45:56 29 4
gpt4 key购买 nike

Android fragment 生命周期表明,当一个 fragment 被添加到 backstack 然后被移除/替换时,onDestroyView() 被调用,稍后,当 fragment 从 backstack 返回到布局时, onCreateView() 被调用。

根据我的理解,这意味着 fragment 的 View 正在被销毁并重新创建。如果用户在 fragment A 的 EditText 中输入文本,然后转到 fragment B,然后返回到 A,当 fragment 返回时,EditText 的内容将被已删除。

然而,这并没有发生在下面的代码中;谁能解释为什么?我已经验证正在调用 FragmentAonDestroyView()

enter image description here

主 Activity .java

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);
}
}

fragment A.java

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.");
}
}

fragment B.java

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;
}
}

activity_main.xml

<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" />

fragment _a.xml

<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>

fragment _b.xml

<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/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com