我研究过将数据从活动传递到活动。但是我不能使用相同的方法传递给我的片段。如何将数据传递给我的片段?
我使用的代码是
Intent i = new Intent(getApplicationContext(), NewActivity.class);
i.putExtra("new_variable_name","value");
startActivity(i);
在其他活动中
Bundle extras = getIntent().getExtras();
if (extras != null) {
String value = extras.getString("new_variable_name");
}