Android 意图的格式是什么?
我想知道 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只是为了调用一个新的 Activity,这就是方法。
startActivity(new Intent(this, MYACtivityClass.class));
如果你想向Activity传递值,你需要创建一个Bundle
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