我想使用 String.xml 中存在的字符串构建 alertdialog,但 R.string.string1 返回 int。请告诉我在 string.xml 中获取字符串的方法这是我的代码..
public static void showAlert(String alertMessage) {
final AlertDialog.Builder builder = new AlertDialog.Builder(null);
builder.setMessage(alertMessage);
final AlertDialog alert = builder.create();
alert.show();
}
showAlert(R.string.string1);