这是welcome_dialog.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toast_layout"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="@drawable/dialog_background" >
<TextSwitcher
android:id="@+id/toast_detail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""/>
</LinearLayout>
这是dialog_background.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#ffffffff"
android:endColor="#00000000"
android:angle="45"/>
<padding android:left="20dp"
android:top="0dp"
android:right="20dp"
android:bottom="0dp" />
<corners android:radius="8dp" />
</shape>
结果在另一个我无法操纵的矩形视图之上。抱歉,我无法发布结果图片,因为我还不允许发布图片。
我正在尝试创建一个具有透明背景的对话框倒计时计数器。我已经尝试了几种方法,但总是有额外的白色背景,我不知道该视图来自哪里。请让我知道我做错了什么。非常感谢!
答案 0 :(得分:0)
在我遇到问题的代码中,我使用了alertDialogBuilder,我认为这是带背景的视图(如果我错了,请纠正我)。我试过这一行,但它不起作用:
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(0));
最终,我找到了这个教程:http://www.mkyong.com/android/android-custom-dialog-example/ 重写了我的对话创建,瞧!我可以用上面的代码行删除背景。