Brightness Screen Filter
问题 Does anyone have an idea how to implement an Brightness Screen Filter like the one here: http://www.appbrain.com/app/screen-filter/com.haxor I need a starting point and I can't figure out how to do it. 回答1: Just make a transparent full screen activity that lets touches pass through. To make touches pass through use the following Window flags before setting the contentView: @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Window window = getWindow