在我的应用程序中,我将片段动态添加到主活动视图中的容器中。我想知道在添加 Fragment 时使用 Otto 时传递数据的最佳方式是什么。目前这就是我的做法,请在示例中我没有发布我的 CustomObject
在我的主要活动中
getSupportFragmentManager().beginTransaction()
.add(R.id.fragment_container, MY_CUSTOM_FRAGMENT).commit();
BusProvider.getInstance().post(produceCustomString());
在我的片段里面
@Subscribe
public void onCustomStringChanged(String customString) {
}