意图的次要属性

发布于 2024-11-18 00:43:41 字数 157 浏览 7 评论 0原文

我想有意包含各种次要属性
在developer.android.com上,我得到了有关类型属性的以下信息
type——指定意图数据的显式类型(MIME类型)。通常,类型是从数据本身推断出来的。通过设置此属性,您可以禁用该评估并强制使用显式类型。
我无法理解,有人可以详细说明吗

I want to include various secondary attributes with intent
On developer.android.com ,i got the following info about type attribute
type -- Specifies an explicit type (a MIME type) of the intent data. Normally the type is inferred from the data itself. By setting this attribute, you disable that evaluation and force an explicit type.

I am not able to understand it ,can anybody please elaborate

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风夜微凉 2024-11-25 00:43:41

你的意思是intent的putExtra(...)方法吗?

例如:

 Intent i = new Intent(this, MyActivity.class);
 i.putExtra("id", 123);
 i.putExtra("name", "name abc");
 i.putExtra("address", "aaaa 123");
 startActivity(i);

Do you mean intent's putExtra(...) method?

For example:

 Intent i = new Intent(this, MyActivity.class);
 i.putExtra("id", 123);
 i.putExtra("name", "name abc");
 i.putExtra("address", "aaaa 123");
 startActivity(i);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文