AlertDialog不显示文字

2017-06-27  本文已影响95人  _蘇芳_

title: AlertDialog不显示文字
date: 2017-06-27 10:33:27
tags: problems


                AlertDialog.Builder builder;
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
                    builder = new AlertDialog.Builder(mContext,R.style.Theme_AppCompat_Light_Dialog_Alert);

                }else {
                    builder = new AlertDialog.Builder(mContext);
                }
                mDialog= builder.setTitle("需要开启一些权限")
                        .setMessage("因为加入了语音识别,所以需要获取一些手机状态、定位信息等权限,麻烦您通过一下")
                        .setPositiveButton(getString(R.string.confirm),this )
                        .setNegativeButton(getString(R.string.cancel),this)
                        .create();

5.0以上设置一个主题就行了.

上一篇下一篇

猜你喜欢

热点阅读