我可以通过内容解析器或活动之外的其他地方访问电话设置吗
作为 Android 上测试实用程序的一部分,我可以访问活动中的电话设置,如下所示:
Cursor cursor = getContentResolver().(Uri.parse("content://telephony/carriers"), null, null, null, null);
是否可以通过内容解析器或其他方式访问活动外部的设置。
As part of a test utility on android I am gaining access to the telephony setting in my activity as follows:
Cursor cursor = getContentResolver().(Uri.parse("content://telephony/carriers"), null, null, null, null);
Is it possible to access the settings outside an activity through the content resolver or through another manner.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AndroidTestCase 和 ActivityInstrumentationTestCase2 都提供获取 Context 的方法
AndroidTestCase:
ActivityInstrumentationTestCase2
此 Context 提供对
getContentResolver()
的访问,但更改权限是从被测应用程序中采用的。AndroidTestCase and ActivityInstrumentationTestCase2 both provide methods to get Context
AndroidTestCase:
ActivityInstrumentationTestCase2
This Context provides access to the
getContentResolver()
but permissions to change are adopted from the application under test.