How to transfer some data to another Fragment?

前端 未结 10 2025
说谎
说谎 2020-11-22 11:41

How to transfer some data to another Fragment likewise it was done with extras for intents?

10条回答
  •  故里飘歌
    2020-11-22 12:22

    Just to extend previous answers - it could help someone. If your getArguments() returns null, put it to onCreate() method and not to constructor of your fragment:

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        int index = getArguments().getInt("index");
    }
    

提交回复
热议问题