13

我需要将我的自定义对话框设置为透明的。

示例代码:

Dialog dialog;
@Override
protected Dialog onCreateDialog(int id) 
{ 
    switch(id) 
    {
        case 1:
            AlertDialog.Builder builder = null;
            Context mContext = this;
            LayoutInflater inflater = ( LayoutInflater ) mContext.getSystemService( LAYOUT_INFLATER_SERVICE );
            View layout = inflater.inflate( R.layout.about_page, ( ViewGroup ) findViewById( R.id.about_Root ) );
            builder = new AlertDialog.Builder( mContext );
            builder.setView( layout );
            dialog = builder.create();
            break;
    }
    return dialog;
}

如何设置透明对话框。

我的 XML 代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/about_Root"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/alert_page_border"
    android:orientation="vertical" >        
    <TextView 
        android:id="@+id/about_Title"
        android:layout_width="wrap_content"
        android:layout_height="0dip"
        android:gravity="center"
        android:layout_weight="1"
        android:textSize="25dip"
        android:textColor="@android:color/white"
        android:textStyle="bold|italic"
        android:text="Welcome" />
</LinearLayout>

代码 Alert_page_border.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape="rectangle">     
    <solid android:color="#3b3b3b" />
    <stroke 
        android:width="3dp"
        android:color="#ffffff" />
    <padding 
        android:left="10dp"
        android:top="10dp"
        android:right="10dp"
        android:bottom="10dp" /> 
    <corners 
        android:radius="2dp" />     
</shape>

示例截图:

在此处输入图像描述

如何避免这种块颜色。

4

8 回答 8

52

使用对话框而不是 AlertDialog

final Dialog dialog = new Dialog(this);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
dialog.setContentView(R.layout.splash);
dialog.show();
于 2013-03-06T11:01:17.467 回答
4

如果您使用的是 API >= 11,您可以尝试为您的 Dialog 设置一个主题,如下所示:

new AlertDialog.Builder(mContext , android.R.style.Theme_Translucent_NoTitleBar_Fullscreen);

或者您可以尝试将背景设置为透明:

dialog.getWindow().setBackgroundDrawable(new ColorDrawable(0));
于 2012-08-08T12:24:28.453 回答
2

只需创建一个样式并将其应用于您的对话框

    <style name="myDialogTheme" parent="@android:style/Theme.Dialog">
        <item name="android:windowBackground">@color/Transparent</item>
        <item name="android:windowIsFloating">false</item>
        <item name="android:windowNoTitle">true</item>
    </style>

然后,使用这个主题创建你的对话框;

    Dialog myDialog = new Dialog(this,R.style.myDialogTheme) {
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.about_page);
        }
    };

希望这将帮助您实现目标。

于 2012-08-08T12:29:49.920 回答
1

你的这个问题准确地描述了我的问题。我尝试了我在这个线程以及其他几个线程中偶然发现的每一个解决方案。没有任何效果。最后我偶然发现了这个线程相应的答案

我必须创建一个自定义对话框类。所以我做到了,它奏效了。实际上,以下样式对我来说就足够了:

colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="transparent_black">#66000000</color>
</resources>

styles.xml

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
    <style name="custom_dialog_theme" parent="@android:style/Theme.Translucent">
        <item name="android:windowBackground">@color/transparent_black</item>
        <item name="android:windowIsFloating">true</item>
    </style>
</resources>

对话框类的代码:

import android.app.Dialog;
import android.content.Context;

import my.app.com.android.R;

public class CustomDialog extends Dialog {
    public AddBookCustomDialog(final Context context) {
        super(context, R.style.custom_dialog_theme);
        this.setContentView(R.layout.add_book_dialog);
    }
}

以及我如何在活动代码中使用此对话框:

CustomDialog customDialog = new CustomDialog(this);
customDialog.show();

我不知道为什么我必须创建一个自定义类才能考虑到主题。现在我已经实现了我想做的:透明对话框。下一场战斗将是定位正负按钮,只要我不能再使用AlertDialog.Builder. 希望我的代码能对你有所帮助。

还要注意 alpha 的低值 - 甚至可以尝试使用 00 以确保您的配置是否有效。

于 2012-11-14T10:04:29.447 回答
1

尝试这个,

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

在此行之后添加上面的代码。

View layout = inflater.inflate( R.layout.about_page, ( ViewGroup ) findViewById( R.id.about_Root ) );
于 2012-08-08T12:24:51.567 回答
1

用于dialog.getWindow().setBackgroundDrawable(null)删除默认背景。

这是供参考的文档:

/*** Set the background to a given Drawable, or remove the background. If the
   * background has padding, this View's padding is set to the background's
   * padding. However, when a background is removed, this View's padding isn't
   * touched. If setting the padding is desired, please use
   * {@link #setPadding(int, int, int, int)}.
   *
   * @param d The Drawable to use as the background, or null to remove the
   *        background
   */
于 2016-03-01T06:14:00.160 回答
0
 <?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/a"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" android:background="#00000000">

 <!-- Write your LinearLayout code here -->

 </RelativeLayout>

试试这个代码。

于 2012-08-08T12:17:58.953 回答
0

只需删除

来自 Alert_page_border.xml

于 2014-04-10T13:04:29.880 回答