How do i darken/dim the current screen on click of a button. PLease help me.
How to dim a screen on click of a button in android?
9.2k Views Asked by SANDHYA At
2
There are 2 best solutions below
2

WindowManager.LayoutParams lparams = getWindow().getAttributes();
lparams.dimAmount=1.0f;
dialog.getWindow().setAttributes(lparams);
The dim amount 0 means no dimming, and the dim amount 1.0f means complete dimming. Any value in between is the corresponding percentage of dim.
Just add this code to the button you want.
Here's one solution, though it may not be the best:
create styles.xml under res/values. Add the following code:
Note that
@color/cache_color
is<color name="cache_color">#00000000</color>
. Now clicking your custom button should send an intent to an activity (e.g., FooActivity). So declare this in your manifest:and voila, the screen is dimmed when your button's listener is called!