更改屏幕方向后,片段将被复制

时间:2018-11-01 16:29:02

标签: android android-fragments

我有一个活动以编程方式创建片段。 该片段内部还有另一个片段。

活动包含片段A。 片段A包含片段B。

一切正常, 除非我更改屏幕方向。

更改屏幕方向时,片段会重复。

我也在网上(在这里)寻找解决问题的方法, 我介绍了android的官方文档, 我尝试进行测试: 但我还没有回来寻找解决方案!

在以下情况下,我看到其他人已经解决了将代码创建片段的问题:

if(savedInstanceState == null){

}

但这对我不起作用!

如果我将代码用于在其中创建片段,则不会创建任何片段。

我试图通过调试确定活动的生命周期。

首次创建活动时,应用会通过此处:

  • 活动
  • 碎片,附上
  • 片段,oncreate
  • 片段,oncreateview

当我水平旋转屏幕时,该应用会通过此处:

  • 碎片,附上
  • 片段,oncreate
  • 活动
  • 片段,oncreateview
  • 碎片,附上
  • 片段,oncreate
  • 片段,oncreateview

活动:

public class Activity extends AppCompatActivity {

    ScrollView sv;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity);

            LinearLayout ll = (LinearLayout) findViewById(R.id.ll);
            sv = findViewById(R.id.sv);


            LinearLayout ll_fragment = new LinearLayout(this);
            ll_fragment.setId(100);
            ll_fragment.setOrientation(LinearLayout.VERTICAL);

            LinearLayout.LayoutParams LLParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT);
            ll_fragment.setLayoutParams(LLParams);

            ll.addView(ll_fragment);


            FragmentManager fragmentManager = getSupportFragmentManager();
            FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();


            ArrayList<Integer> AL_Int = new ArrayList<Integer>();
            AL_Int.add(sv.getId());
            fragment = FragmentA.newInstance(AL_Int);
            fragmentTransaction.add(ll_fragment.getId(), fragment);
            fragmentTransaction.commit();

    }

片段:

public class FragmentA extends Fragment {

    public static FragmentA newInstance(ArrayList<Integer> AL_Int_sv_ID) {


        FragmentA f = new FragmentA();
        Bundle b = new Bundle();
        if(AL_Int_sv_ID.get(0) != null){
            b.putInt("int_sv_ID", AL_Int_sv_ID.get(0));
            b.putBoolean("bool_sv", true);
        }else{
            b.putInt("int_sv_ID", -1);
            b.putBoolean("bool_sv", false);
        }

        f.setArguments(b);
        return f;


    }


    @Override
    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        Bundle args = getArguments();
        if (args != null) {

            int int_ScrollView_ID = args.getInt("int_sv_ID");
            boolean bool_ScrollView = args.getBoolean("bool_sv");

            bool_sv = bool_ScrollView;
            int_sv_ID = int_ScrollView_ID;

            if(bool_sv){
                sv = getActivity().findViewById(int_ScrollView_ID);
                sv = FA.findViewById(int_ScrollView_ID);
            }

        }


    }


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {


        LinearLayout ll = new LinearLayout(getActivity());
        ll.setOrientation(LinearLayout.VERTICAL);

        LLParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,LinearLayout.LayoutParams.MATCH_PARENT);
        ll.setLayoutParams(LLParams);
        ll.setId(20);


        FragmentTransaction transaction = getChildFragmentManager().beginTransaction();

        FragmentB fragmentB = new FragmentB();

        transaction.add(20, fragmentB);
        transaction.commit();


        return ll;

}

2 个答案:

答案 0 :(得分:0)

您需要重试if(savedInstanceState == null)方法。这是正确的处理方式,您可能做错了,仅将以下3行包裹在if中:

fragment = AutoCompleteTextView_Fragment.newInstance(AL_Int); 
fragmentTransaction.add(ll_fragment.getId(), fragment); 
fragmentTransaction.commit();

答案 1 :(得分:0)

遇到同样的问题,请尝试fragmentTransaction.replace()而不是 fragmentTransaction.add()