如何将strings.xml文件中的文本获取到我的.setMessage中?

show = new AlertDialog.Builder(mContext).setTitle("moria")
        .setMessage("R.string.erroroik")
        .setPositiveButton("OK", null).show();

最佳答案

您可以通过上下文访问它,具体取决于此对话框生成器的位置,它可以是

context.getString(R.string.erroroik);


this.getString(R.string.erroroik);

查看String Resources了解更多信息。

07-28 07:23