Android 意图的格式是什么?

发布于 2024-10-09 07:32:22 字数 403 浏览 7 评论 0原文

我想知道 android 意图的格式是什么。 IE,我应该将什么传递给该方法:

getBaseContext().startService(Intent);

如果我想通过这个:

android.provider.CallLog.Calls.CONTENT_URI

可以吗?格式是什么。

有人可以很好地解释如何使用意图,以及如何在服务实现上使用它,例如 startService()onStartCommand (Intent Intent, int flags, int startId)< /代码>。

谢谢!

I'd like to know what is the format for an android intent. IE, what should I pass to the method :

getBaseContext().startService(Intent);

If I want to pass this:

android.provider.CallLog.Calls.CONTENT_URI

can i? What would be the format.

Can someone give a good explanation of how to use Intents, and how to use it on Service implementation, like, startService(), or onStartCommand (Intent intent, int flags, int startId).

Thanks!

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

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

发布评论

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

评论(1

云巢 2024-10-16 07:32:22

只是为了调用一个新的 Activity,这就是方法。

startActivity(new Intent(this, MYACtivityClass.class));

如果你想向Activity传递值,你需要创建一个Bundle

意图a =新意图(这个,
MYACtivityClass.class);捆绑包 b = 新
捆(); b.putBoolean("测试", true);
a.putExtra("myBundle", b);
启动活动(a);

Just to call a new Activity this is the method.

startActivity(new Intent(this, MYACtivityClass.class));

If you want to pass values into the Activity, you need to create a Bundle

Intent a = new Intent(this,
MYACtivityClass.class); Bundle b = new
Bundle(); b.putBoolean("test", true);
a.putExtra("myBundle", b);
startActivity(a);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文