How can I transfer data from one fragment to another fragment android

前端 未结 5 1425
梦如初夏
梦如初夏 2020-12-16 23:41

One way I know that is through activity.We can send data from fragment to activity and activity to fragment Is there any other way.

5条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-17 00:08

    To pass data from one fragment to another Bundle will help.

    LifeShapeDetailsFragment fragment = new LifeShapeDetailsFragment(); //  object of next fragment
    Bundle bundle = new Bundle();
    bundle.putInt("position", id);
     fragment.setArguments(bundle);
    

    Then push/call next Fragments.

    and code to next Fragment:

    Bundle bundle = this.getArguments();
    int myInt = bundle.getInt("position", 0);
    

提交回复
热议问题