有谁知道如何实现像这里这样的亮度屏幕过滤器:
http://www.appbrain.com/app/screen-filter/com.haxor
我需要一个起点,但我不知道该怎么做。
只需制作一个透明的全屏活动,让触摸通过。要使触摸通过,请在设置 contentView 之前使用以下 Window 标志:
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
Window window = getWindow();
// Let touches go through to apps/activities underneath.
window.addFlags(FLAG_NOT_TOUCHABLE);
// Now set up content view
setContentView(R.layout.main);
}
对于您的 main.xml 布局文件,只需使用具有透明背景的全屏 LinearLayout:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/background"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#33000000">
</LinearLayout>
然后要调整“亮度”,只需从代码中的某处更改背景颜色的值:
findViewById(R.id.background).setBackgroundColor(0x66000000);
获取 WindowManager 的实例。
WindowManager windowManager = (WindowManager) Class.forName("android.view.WindowManagerImpl").getMethod("getDefault", new Class[0]).invoke(null, new Object[0]);
创建全屏布局xml(布局参数设置为fill_parent
)
将您的视图设置为不可点击、不可聚焦、不可长时间点击等,以便将触摸传递到您的应用程序并且应用程序可以检测到它。
view.setFocusable(false);
view.setClickable(false);
view.setKeepScreenOn(false);
view.setLongClickable(false);
view.setFocusableInTouchMode(false);
创建类型为 的布局参数android.view.WindowManager.LayoutParams
。
LayoutParams layoutParams = new LayoutParams();
设置布局参数,如高度、宽度等
layoutParams.height = LayoutParams.FILL_PARENT;
layoutParams.width = LayoutParams.FILL_PARENT;
layoutParams.flags = 280; // You can try LayoutParams.FLAG_FULLSCREEN too
layoutParams.format = PixelFormat.TRANSLUCENT; // You can try different formats
layoutParams.windowAnimations = android.R.style.Animation_Toast; // You can use only animations that the system to can access
layoutParams.type = LayoutParams.TYPE_SYSTEM_OVERLAY;
layoutParams.gravity = Gravity.BOTTOM;
layoutParams.x = 0;
layoutParams.y = 0;
layoutParams.verticalWeight = 1.0F;
layoutParams.horizontalWeight = 1.0F;
layoutParams.verticalMargin = 0.0F;
layoutParams.horizontalMargin = 0.0F;
关键步骤:您可以设置所需的亮度百分比。
layoutParams.setBackgroundDrawable(getBackgroundDrawable(i));
private Drawable getBackgroundDrawable(int i) {
int j = 255 - (int) Math.round(255D * Math.exp(4D * ((double) i / 100D) - 4D));
return new ColorDrawable(Color.argb(j, 0, 0, 0));}
最后将视图添加到您之前创建的 windowManager。
windowManager.addView(view, layoutParams);
注意:您需要SYSTEM_ALERT_WINDOW
获得权限才能在屏幕上放置叠加层。
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
已经对此进行了测试,并且可以正常工作。如果您遇到困难,请告诉我。
当然你不能使用这是生产代码,但如果你在玩..试试这个Undocumented hack
它用 :
private void setBrightness(int brightness) {
try {
IHardwareService hardware = IHardwareService.Stub.asInterface(
ServiceManager.getService("hardware"));
if (hardware != null) {
hardware.setScreenBacklight(brightness);
}
} catch (RemoteException doe) {
}
}
请记住,它使用此权限:
<uses-permission android:name="android.permission.HARDWARE_TEST"/>
你也可以试试这个:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.max_bright);
WindowManager.LayoutParams lp = getWindow().getAttributes();
lp.screenBrightness = 100 / 100.0f;
getWindow().setAttributes(lp);
}