如何从Android上的意图获取额外数据?

如何将数据从一个活动(意图)发送到另一个活动?

我使用此代码发送数据:

Intent i=new Intent(context,SendMessage.class);i.putExtra("id", user.getUserAccountId()+"");i.putExtra("name", user.getUserFullName());context.startActivity(i);
1028854 次浏览

首先,使用getIntent()方法获取启动活动的意图:

Intent intent = getIntent();

如果您的额外数据表示为字符串,那么您可以使用intent.getStringExtra(String name)方法。在您的情况下:

String id = intent.getStringExtra("id");String name = intent.getStringExtra("name");

在接收活动中

Bundle extras = getIntent().getExtras();String userName;
if (extras != null) {userName = extras.getString("name");// and get whatever type user account id is}
//  How to send value using intent from one class to another class//  class A(which will send data)Intent theIntent = new Intent(this, B.class);theIntent.putExtra("name", john);startActivity(theIntent);//  How to get these values in another class//  Class BIntent i= getIntent();i.getStringExtra("name");//  if you log here i than you will get the value of i i.e. john

如果您试图在片段中获取额外的数据,那么您可以尝试使用:

使用以下方式放置数据:

Bundle args = new Bundle();args.putInt(DummySectionFragment.ARG_SECTION_NUMBER);

使用以下方式获取数据:

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

getArguments().getInt(ARG_SECTION_NUMBER);getArguments().getString(ARG_SECTION_STRING);getArguments().getBoolean(ARG_SECTION_BOOL);getArguments().getChar(ARG_SECTION_CHAR);getArguments().getByte(ARG_SECTION_DATA);
}

如果在FragmentActivity中使用,请尝试以下操作:

第一页扩展活动名称:FragmentActivityEndTime

Intent Tabdetail = new Intent(getApplicationContext(), ReceivePage.class);Tabdetail.putExtra("Marker", marker.getTitle().toString());startActivity(Tabdetail);

在片段中,你只需要先调用getActivity()

第二页扩展碎片

String receive = getActivity().getIntent().getExtras().getString("name");

而不是初始化另一个新的Intent来接收数据,只需这样做:

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

只是一个建议:

而不是在你的i.putExtra(“id”……)中使用“id”或“name”,我建议,当它有意义时,使用可以与putExtra()一起使用的当前标准字段,即Intent.EXTRA_something。

完整的列表可以在意图(Android开发者)中找到。

加起来

数据集

String value = "Hello World!";Intent intent = new Intent(getApplicationContext(), NewActivity.class);intent.putExtra("sample_name", value);startActivity(intent);

获取数据

String value;Bundle bundle = getIntent().getExtras();if (bundle != null) {value = bundle.getString("sample_name");}

你也可以这样做
//将值放入意图

    Intent in = new Intent(MainActivity.this, Booked.class);in.putExtra("filter", "Booked");startActivity(in);

//从意图中获取值

    Intent intent = getIntent();Bundle bundle = intent.getExtras();String filter = bundle.getString("filter");

我们可以通过简单的方法做到这一点:

在第一个活动中:

Intent intent = new Intent(FirstActivity.this, SecondActivity.class);intent.putExtra("uid", uid.toString());intent.putExtra("pwd", pwd.toString());startActivity(intent);

在第二个活动中:

    try {Intent intent = getIntent();
String uid = intent.getStringExtra("uid");String pwd = intent.getStringExtra("pwd");
} catch (Exception e) {e.printStackTrace();Log.e("getStringExtra_EX", e + "");}

从意图中获得不同类型的额外内容

要从Intent访问数据,您应该知道两件事。

  • KEY
  • 您的数据的数据类型。

Intent类中有不同的方法来提取不同类型的数据类型。看起来像这样

getIntent(). XXXX(KEY)或intent.XXX(KEY);


因此,如果您知道在其他活动中设置的变量的数据类型,则可以使用相应的方法。

从Intent检索活动中的字符串的示例

String profileName = getIntent().getStringExtra("SomeKey");

不同数据类型的不同方法变体列表

您可以在意图的官方文档中看到可用方法的列表。

这是适配器,对于活动,您只需要更改mContext到您的Activty名称和片段,您需要将mContext更改为getActive()

 public static ArrayList<String> tags_array ;// static array list if you want to pass array data
public void sendDataBundle(){tags_array = new ArrayList();tags_array.add("hashtag");//few array datatags_array.add("selling");tags_array.add("cityname");tags_array.add("more");tags_array.add("mobile");tags_array.add("android");tags_array.add("dress");Intent su = new Intent(mContext, ViewItemActivity.class);Bundle bun1 = new Bundle();bun1.putString("product_title","My Product Titile");bun1.putString("product_description", "My Product Discription");bun1.putString("category", "Product Category");bun1.putStringArrayList("hashtag", tags_array);//to pass array listsu.putExtras(bun1);mContext.startActivity(su);}

您可以从意图中获取任何类型的额外数据,无论它是对象、字符串还是任何类型的数据。

Bundle extra = getIntent().getExtras();
if (extra != null){String str1 = (String) extra.get("obj"); // get a object
String str2 =  extra.getString("string"); //get a string}

最短的解决方案是:

Boolean isGranted = getIntent().getBooleanExtra("tag", false);

在第一个活动中传递带值的意图:

Intent intent = new Intent(FirstActivity.this, SecondActivity.class);intent.putExtra("uid", uid.toString());intent.putExtra("pwd", pwd.toString());startActivity(intent);

接收第二次活动的意图;-

Intent intent = getIntent();String user = intent.getStringExtra("uid");String pass = intent.getStringExtra("pwd");

我们通常使用两种方法来发送值和获取值。对于发送值,我们将使用intent.putExtra("key", Value);,在接收另一个活动的意图时,我们将使用intent.getStringExtra("key");来获取String的意图数据,或者使用其他可用的方法来获取其他类型的数据(IntegerBoolean等)。关键字可以是任何关键字,以识别值意味着您正在共享什么值。希望对你有用

静态编程语言

第一次活动

val intent = Intent(this, SecondActivity::class.java)intent.putExtra("key", "value")startActivity(intent)

第二次活动

val value = getIntent().getStringExtra("key")

强烈推荐

始终将密钥放在常量文件中以获得更多托管方式。

companion object {val PUT_EXTRA_USER = "PUT_EXTRA_USER"}

按意图放置数据:

Intent intent = new Intent(mContext, HomeWorkReportActivity.class);intent.putExtra("subjectName", "Maths");intent.putExtra("instituteId", 22);mContext.startActivity(intent);

按意图获取数据:

String subName = getIntent().getStringExtra("subjectName");int insId = getIntent().getIntExtra("instituteId", 0);

如果我们使用整数值作为意图,我们必须在getIntent().getIntExtra("instituteId", 0)中将第二个参数设置为0。否则,我们不使用0,Android会给我一个错误。