我知道的一种方式是通过activity.We可以从片段发送数据到活动和活动到片段有没有其他方式.
解决方法
将数据从一个片段传递到另一个片段将有所帮助.
LifeShapeDetailsFragment fragment = new LifeShapeDetailsFragment(); // object of next fragment Bundle bundle = new Bundle(); bundle.putInt("position",id); fragment.setArguments(bundle);
然后按/调用下一个片段.
和代码到下一个片段:
Bundle bundle = this.getArguments(); int myInt = bundle.getInt("position",0);