我看到这个帖子 亮度滤网 ,它描述了如何创建一个简单的屏幕过滤器。
使用该代码
private void setBrightness(int brightness) {
try {
IHardwareService hardware = IHardwareService.Stub.asInterface(
ServiceManager.getService("hardware"));
if (hardware != null) {
hardware.setScreenBacklight(brightness);
}
} catch (RemoteException doe) {
}
}
但我无法找到IHardwareService.jar
谁能给我解释一下,我应该使用它来创建这个简单的应用程序代码?
提供的jar文件将被还赞赏!