AlertDialog总结

来源:互联网 发布:linux清空文件内容 编辑:程序博客网 时间:2024/06/03 06:22

自定义content

AlertDialog dialog = new AlertDialog.Builder(this)                .create();dialog.show();dialog.setContentView(R.layout.dialog_layout);

setContentView 一定要写在 dialog.show() 之前,否则回报android.util.AndroidRuntimeException: requestFeature() must be called before adding content

0 0
原创粉丝点击