android片段生命周期显示,当片段添加到backbackback,然后移除/替换时,将调用onDestroyView(),稍后,当片段从backbackback返回布局时,将调用onCreateView()
据我所知,这意味着碎片的视图正在被破坏和重建。如果用户在片段a的EditText中输入了文本,然后转到片段b,然后返回到a,当片段返回时,EditText的内容将被删除。
但是,这在下面的代码中没有发生;有人能解释为什么吗?我已经确认正在调用FragmentA'sonDestroyView()
main活动.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);
    }
}

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

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

活动\主.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" />

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

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

最佳答案

后堆栈中的片段将其状态保持在Bundle中。这包括当前内容为EditTexts等的视图层次结构状态。

07-24 09:49
查看更多