自定义对话框

前端之家收集整理的这篇文章主要介绍了自定义对话框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
                                        <pre><code>AlertDialog.Builder builder = new AlertDialog.Builder(this);

Dialog dialog = builder.create();
// show函数需要在getWindow前调用
dialog.show();
// 对话框窗口设置布局文件
Window window = dialog.getWindow();
window.setContentView(R.layout.res);

// 获取对话窗口中的ListView
ListView list_record = (ListView) window.findViewById(R.id.someView);

原文链接:https://www.f2er.com/note/421488.html

猜你在找的程序笔记相关文章