我想通过Intent接收从类到片段的数据,我尝试做,我写
Intent n = this.{getIntent()};
{这里错了},但这段代码不起作用,所以我做了什么?
答案 0 :(得分:0)
试试这个,
您可以使用
从活动发送数据Bundle bundle = new Bundle();
bundle.putString("key", "value");
Fragmentclass fc= new Fragmentclass();
fc.setArguments(bundle);
并在你的片段的onCreateView方法中以这种方式接收,
String strtext = getArguments().getString("key");
就是这样