从警报对话框中删除黑色背景 - Android
Posted
技术标签:
【中文标题】从警报对话框中删除黑色背景 - Android【英文标题】:Remove Black background from Alert Dialog Box - Android 【发布时间】:2017-11-10 01:44:01 【问题描述】:我正在开发一个 android 应用程序,在这里我创建了一个自定义对话框,该对话框出现在设备的完整高度上,但我想保留顶部和底部的边距,所以我使用下面的代码设置边距
WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
lp.copyFrom(alertDialog.getWindow().getAttributes());
lp.width = WindowManager.LayoutParams.WRAP_CONTENT;
lp.height = Utility.convertDPtoPixel(400, screen);
alertDialog.show();
alertDialog.getWindow().setAttributes(lp);
上面的代码运行良好,但对话框显示为黑色。
这是屏幕截图:
现在我想从对话框中删除这些黑色环境。
这是对话框的代码:
public void showDialog()
AlertDialog.Builder builder;
final AlertDialog alertDialog;
//final Dialog alertDialog;
Context mContext;
mContext = screen;
LayoutInflater inflater = (LayoutInflater) LoginActivity.screen.getSystemService(LoginActivity.screen.LAYOUT_INFLATER_SERVICE);
layout = inflater.inflate(R.layout.countrylist, null);
LinearLayout rellayout = (LinearLayout) layout.findViewById(R.id.rellayout);
RelativeLayout closeAcessCodeDialog = (RelativeLayout)layout.findViewById(R.id.closeAcessCodeDialog) ;
ListView listview = (ListView) layout.findViewById(R.id.listview);
listview.setAdapter(new CustomAdapter1(LoginActivity.screen, countryList));
builder = new AlertDialog.Builder(LoginActivity.screen);
builder.setView(layout);
alertDialog = builder.create();
alertDialog.getWindow().setBackgroundDrawableResource(android.R.color.transparent);
WindowManager.LayoutParams lp = new WindowManager.LayoutParams();
lp.copyFrom(alertDialog.getWindow().getAttributes());
lp.width = WindowManager.LayoutParams.WRAP_CONTENT;
lp.height = Utility.convertDPtoPixel(400, screen);
alertDialog.show();
alertDialog.getWindow().setAttributes(lp);
listview.setOnItemClickListener(new OnItemClickListener()
@Override
public void onItemClick(AdapterView<?> parent, View view, int pos,
long id)
countryName = idCountry.get(pos);
System.out.println("Country code is: " + countryName);
alertDialog.cancel();
text.setText(countryList.get(pos));
);
closeAcessCodeDialog.setOnClickListener(new OnClickListener()
@Override
public void onClick(View view)
alertDialog.dismiss();
);
countrylist.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_
android:layout_
app:cardBackgroundColor="#ffe264"
app:cardCornerRadius="10dp"
>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rellayout"
android:layout_
android:layout_
android:orientation="vertical"
>
<RelativeLayout
android:layout_
android:layout_
android:layout_above="@+id/listview"
android:gravity="center_vertical"
>
<TextView
android:layout_
android:layout_
android:text="Select your Country"
android:textColor="#000"
android:textSize="18sp"
android:textStyle="bold"
android:layout_centerInParent="true"
/>
<RelativeLayout
android:id="@+id/closeAcessCodeDialog"
android:layout_
android:layout_
android:layout_alignParentRight="true"
android:gravity="center">
<ImageButton
android:id="@+id/closeDialog"
android:layout_
android:layout_
android:background="@drawable/close_country_dialog" />
</RelativeLayout>
</RelativeLayout>
<ListView
android:id="@+id/listview"
android:layout_
android:layout_
android:cacheColorHint="@android:color/transparent"
android:divider="#e5e5e5"
android:background="@drawable/list_bacground"
android:dividerHeight="1px" />
</LinearLayout>
我通过 *** 访问了许多类似的链接,但没有一个有用。
【问题讨论】:
使用 androidmanifest 中的 Theme.Translucent.NoTitleBar 更改您的活动主题并完成。 如果主题不起作用,则将 setBackgroundDrawableResource 更改为 alertDialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));希望这对你有帮助。 @AndyDeveloper 我尝试过使用主题,它不起作用。 试试第二个答案 @AndyDeveloper 我在代码中已经使用的第二个选项。 【参考方案1】:希望对你有很大帮助
我认为它的默认主题颜色是黑色,所以你必须检查AlertDialog
的导入,它应该是import android.support.v7.app.AlertDialog;
,还有一件事你应该为背景使用自定义颜色,如下所示
alertDialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
【讨论】:
通过更改包并在 show() 方法工作后放置 alertDialog.getWindow().setBackgroundDrawable() ,好人! 您好,如果您不介意,请您为我的问题投票,因为这是一个相关问题并且有足够的信息来给出答案,但是有人反对它。【参考方案2】:试试这个。
Dialog alertDialog = new Dialog(this);
alertDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
alertDialog.setContentView(R.layout.yourlayout);
alertDialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
alertDialog.show();
【讨论】:
以上是关于从警报对话框中删除黑色背景 - Android的主要内容,如果未能解决你的问题,请参考以下文章