Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个应用程序来调暗屏幕,如何从服务中调暗屏幕底部的背光输入按钮?
启动不可见的不可触摸的不可聚焦的活动不是一种选择,因为它会阻止其他活动的启动。
建议?
尝试使用
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE);
你会需要
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="11" />
在您的图书馆清单中。
如果适用,还可以在库和 shell 的属性中将目标 SDK 设置为 11