自定义AlertDialog去除黑色背景的解决方法
2019/7/7 21:56:59
本文主要是介绍自定义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去除黑色背景的解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持找一找教程网。
这篇关于自定义AlertDialog去除黑色背景的解决方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-01-18android.permission.read_media_video
- 2024-01-18android_getaddrinfo failed eai_nodata
- 2024-01-18androidmo
- 2024-01-15Android下三种离屏渲染技术
- 2024-01-09Android 蓝牙使用
- 2024-01-06Android对接华为AI - 文本识别
- 2023-11-15代码安全之代码混淆及加固(Android)
- 2023-11-10简述Android语音播报TTS
- 2023-11-06Android WiFi工具类
- 2023-07-22Android开发未来的出路