我有一个自定义对话框活动,其中包含FrameLayout内的相机预览。
<FrameLayout
android:id="@+id/camera_preview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="3" />
当对话框出现时,背景会像平常一样变暗,但FrameLayout也会变暗。
我尝试使用自定义样式删除dim,但这也消除了对话框后面的调光。
<style name="Theme.DoNotDim" parent="android:Theme.Holo.Dialog">
<item name="android:backgroundDimEnabled">false</item>
</style>
有没有办法在保持正常背景调光的同时停止FrameLayout的调光?