我可以通过内容解析器或活动之外的其他地方访问电话设置吗

发布于 2024-10-26 12:36:15 字数 216 浏览 0 评论 0原文

作为 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 技术交流群。

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

发布评论

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

评论(1

泼猴你往哪里跑 2024-11-02 12:36:15

AndroidTestCase 和 ActivityInstrumentationTestCase2 都提供获取 Context 的方法

AndroidTestCase:

getContext();

ActivityInstrumentationTestCase2

getInstrumentation().getContext();

此 Context 提供对 getContentResolver() 的访问,但更改权限是从被测应用程序中采用的。

AndroidTestCase and ActivityInstrumentationTestCase2 both provide methods to get Context

AndroidTestCase:

getContext();

ActivityInstrumentationTestCase2

getInstrumentation().getContext();

This Context provides access to the getContentResolver() but permissions to change are adopted from the application under test.

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