我需要将自定义对话框设置为透明。
示例代码:
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>
Code 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>
示例屏幕截图:
如何避免此块颜色。
答案 0 :(得分:51)
使用对话框代替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();
答案 1 :(得分:4)
如果您使用的是API&gt; = 11,则可以尝试将对话框设置为对话框:
new AlertDialog.Builder(mContext , android.R.style.Theme_Translucent_NoTitleBar_Fullscreen);
或者您可以尝试将背景设置为透明:
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(0));
答案 2 :(得分:2)
你的这个问题确切描述了我的问题。我尝试了在这个线程中偶然发现的每一个解决方案以及更多的线程。没有任何效果。最后,我偶然发现了this thread和corresponding answer。
我必须创建一个自定义对话框类。所以我做了,它有效。实际上,以下样式对我来说已经足够了:
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,以确保您的配置是否有效。
答案 3 :(得分: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 */
答案 4 :(得分: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>
试试这段代码。
答案 5 :(得分:0)
试试这个,
layout.setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
在此行之后添加上面的代码。
View layout = inflater.inflate( R.layout.about_page, ( ViewGroup ) findViewById( R.id.about_Root ) );
答案 6 :(得分:0)
只需创建一个样式并将其应用到对话框
<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);
}
};
希望这有助于您实现目标。
答案 7 :(得分:0)
删除
来自Alert_page_border.xml