.putExtra到另一个文件

时间:2017-09-06 19:54:14

标签: android

这是我的.putExtra代码:

String url = "test";
startActivity(new Intent(MainActivity.this, RelationshipRemoved.class)
                    .putExtra("userInfo", urlTwo));

如何在另一个文件中调用值urlTwo?

1 个答案:

答案 0 :(得分:0)

您可以从另一个Activity(而不仅仅是另一个文件)中接收读取接收包中的值的值,如下所示:

String userInfo = getIntent().getStringExtra("userInfo");

   String userInfo = getIntent().getExtras().getString("userInfo");

示例:

Activity发送意图:

Intent intent = new Intent(ActivityOne.this, ActivityTwo.class);
intent.putExtra("userInfo", "abcdef123456");
startActivity(intent);

ActivityTwo接收存储的数据:

String receivedValue = getIntent().getStringExtra("userInfo");

变量receivedValue将包含字符串值"abcdef123456"