弹出窗口打开android后,变暗背景

时间:2016-12-22 07:05:06

标签: android android-studio

我希望在弹出窗口打开后让背景变暗,并在解雇后恢复之前的所有内容。我搜索过谷歌并看过一些教程。但我无法理解它是如何可能的。这是我的Java代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/colorPrimary"
android:id="@+id/popup"
>
Various views and button
</RelativeLayout>

这是我的弹出式xml代码:

require 'git'

我现在该怎么办?

1 个答案:

答案 0 :(得分:0)

你可以尝试一下

替换

popup.setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));

在您的代码

popup.setBackgroundDrawable(new ColorDrawable(Color.BLACK));

您可以根据选择更改任何背景。