使用 Context 调暗屏幕

发布于 2024-11-10 08:08:00 字数 206 浏览 2 评论 0原文

我想知道这段代码中的“上下文”代表什么,我应该插入什么才能使它工作? (调暗屏幕的代码)

Settings.System.putInt(context.getContentResolver(), 
                         Settings.System.SCREEN_BRIGHTNESS, someIntValue);

I'm wondering what "context" stands for in this code, and what shall I insert to make it work? (Code to dim the screen)

Settings.System.putInt(context.getContentResolver(), 
                         Settings.System.SCREEN_BRIGHTNESS, someIntValue);

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

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

发布评论

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

评论(1

哥,最终变帅啦 2024-11-17 08:08:00

如果您从 ActivityService 执行此操作:

Settings.System.putInt(this.getContentResolver(), Settings.System.SCREEN_BRIGHTNESS, someIntValue);

那是因为 ActivityService 都是从 继承的Context 类,可以用作上下文值。您可以使其更加明确(仍然假设这是从 ActivityService 继承的类):

Context context = this;
Settings.System.putInt(context.getContentResolver(), Settings.System.SCREEN_BRIGHTNESS, someIntValue);

If you are doing this from Activity or Service:

Settings.System.putInt(this.getContentResolver(), Settings.System.SCREEN_BRIGHTNESS, someIntValue);

That's because both Activity and Service are inherited from Context class and can be used as context value. You can make this even more explicit (still assuming this is class inherited from Activity or Service):

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