软件编程
位置:首页>> 软件编程>> Android编程>> 自定义AlertDialog去除黑色背景的解决方法

自定义AlertDialog去除黑色背景的解决方法

作者:wapchief  发布时间:2023-05-18 09:56:17 

标签:AlertDialog,黑色,背景

主要注意的是在资源引用的地方


AlertDialog.Builder(this,R.style.dialogNoBg).create();

这里要自定义sytle


<!--dialog去阴影-->
<style name="dialogNoBg">
<item name="android:background">#00000000</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
</style>

如果引用后还是没效果,

在自定义的布局里面根Layout布局背景设置为”#00000000”

源代码:


private AlertDialog dialog;

private void showdialogCashOut() {
dialog = new AlertDialog.Builder(this,R.style.dialogNoBg).create();
View view = View.inflate(this, R.layout.cash_see_out_dialog, null);
dialog.getWindow().setContentView(view);
TextView tv_money = (TextView) dialog.findViewById(R.id.tv_money);
tv_money.setText(Html.fromHtml("<font color='#FF2850'>注意:</font>"+getResources().getString(R.string.cash_out_dialog)));
TextView cancle_ye = (TextView) view.findViewById(R.id.dialog_cancel);
cancle_ye.setOnClickListener(new View.OnClickListener() {
 @Override
 public void onClick(View view) {
 dialog.dismiss();
 }
});
TextView yes_ye = (TextView) view.findViewById(R.id.dialog_yes);
yes_ye.setOnClickListener(new View.OnClickListener() {
 @Override
 public void onClick(View view) {
 dialog.dismiss();
 }
});

}

自定义AlertDialog去除黑色背景的解决方法

来源:https://blog.csdn.net/wapchief/article/details/73278563

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com