When I start an activity B over activity A, A is dimed. Is it possible to not dim activity A, when activity B is started?

link|improve this question

67% accept rate
feedback

2 Answers

up vote 1 down vote accepted

This can be done by creating a new style in your res/values/styles.xml file with the attribute backgroundDimEnabled set to false:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <style name="Theme.DoNotDimBackground" parent="android:Theme">
    <item name="android:backgroundDimEnabled">false</item>
  </style>
</resources>

In your manifest, you should simply apply the newly created style to your activity, which we will call, for example, Activity1

<activity android:name=".Activity1" android:theme="@style/Theme.DoNotDimBackground">
link|improve this answer
This solution works until I set for B activity theme Theme.Dialog. – Solvek Mar 3 '11 at 15:45
feedback

Here is approach for custom dialog

    Window win = getWindow();

    win.addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);

    WindowManager.LayoutParams params = win.getAttributes();
    params.dimAmount = 0;
    win.setAttributes(params);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.