Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想删除自定义对话框的白色边框。我在 Stack Overflow 上找到了很多内容。但仍然没有得到解决方案。如何删除这个白色边框。请有人帮我解决这个问题。在此先感谢。
试试这个使用对话框而不是 AlertDialog.Builder 并从对话框中删除边框线:
Dialog dialog = new Dialog(this,android.R.style.Theme_Translucent_NoTitleBar);
并且您必须替换对话框的窗口内容视图。我认为您可以在对话框构造函数中使用它:
this.getWindow().setContentView(R.layout.your_dialog_view);