Android:访问外部包的功能
我试图弄清楚如何访问外部程序中的函数。我目前有这个:
ComponentName cn1 = new ComponentName("com.htc.android.worldclock", "com.htc.android.worldclock.WorldClockTabControl");
它将启动 HTC 世界时钟。我希望启动应用程序的夜间模式功能或应用程序的全屏时钟功能,而不是启动主程序。是否可以?
下图显示了启动我想以编程方式启动的功能的 ui 按钮 y。
I am trying to figure out how access a function in an external program. I currently have this:
ComponentName cn1 = new ComponentName("com.htc.android.worldclock", "com.htc.android.worldclock.WorldClockTabControl");
Which will launch the HTC world clock. I would like it, instead of launching the main program, launch the night mode function of the app or full screen clock function of the app. Is it possible?
The picture below shows the ui button that launches the function I would like to launch programmatically y.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果 HTC 世界时钟程序在收到其他意图或带有额外参数的此意图时启动夜间模式活动,这是可能的。
但由于你不知道HTC世界时钟的实现,所以我认为这是很难和不可能的。
If HTC world clock program would launch night mode activity when receive other intent or this intent with extra parameter, it is possible.
But as you don't know the implement of HTC world clock, so I think it is hard and impossible.