Android6.0 AlertDialog 的title和message 不显示问题

来源:互联网 发布:剑灵龙女九头身数据图 编辑:程序博客网 时间:2024/05/18 00:29

今天做掌上武大校园网启停的确认对话框,遇到了在android 6.0 机子上AlertDiog的title和message文字不显示的问题,如下图


看到网上的解决方案是导android.support.v7.app这个包,用这个包中的alertdialog,然而还是没有解决。

最后的解决方案是:

将AlertDialog对象创建换一种方式:

AlertDialog.Builder ab;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {ab = new AlertDialog.Builder(NetManagerActivity.this, android.R.style.Theme_Material_Light_Dialog_Alert);
} else {ab = new AlertDialog.Builder(NetManagerActivity.this);
}
导入普通包即可解决:

import android.app.AlertDialog;



0 0
原创粉丝点击