所以我在Dialog-Styled Activity中有一个Map,但是当我设置Dim Background时它也会使Map变暗。这只能在Galaxy Tab 10 2(4.0.1)上看到,但我们的设备有限。
设置Dim背景代码//
activity.getWindow().setFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND,
WindowManager.LayoutParams.FLAG_DIM_BEHIND);
.....
params.dimAmount = 0.5f;
activity.getWindow().setAttributes((android.view.WindowManager.LayoutParams) params);
输出
是否有人针对此类问题采取了解决方法?现在我们必须删除背景调光,但这不是一个很好的选择。
TA!