将字符串从活动传递到片段(空)

时间:2019-11-27 15:15:41

标签: android

我正在尝试将数据从Activity传递到Fragment,但传递信息仍然为NULL。我在做什么错了?

活动

Bundle bundle = new Bundle();
bundle.putString("data", "hello");
BiezaceAwarie obj = new BiezaceAwarie();
obj.setArguments(bundle);

片段

String abc;
Bundle bundle = this.getArguments();
if (bundle != null) {
    abc = getArguments().getString("data");
}

0 个答案:

没有答案