通过Intent从类接收数据到片段

时间:2015-09-20 06:57:15

标签: android android-intent

我想通过Intent接收从类到片段的数据,我尝试做,我写

Intent n = this.{getIntent()};

{这里错了},但这段代码不起作用,所以我做了什么?

1 个答案:

答案 0 :(得分:0)

试试这个,

您可以使用

从活动发送数据
Bundle bundle = new Bundle();
bundle.putString("key", "value");
Fragmentclass fc= new Fragmentclass();
fc.setArguments(bundle);

并在你的片段的onCreateView方法中以这种方式接收,

String strtext = getArguments().getString("key");  

就是这样