你能解释一下为什么这个Dialog不能显示项目吗?
new AlertDialog.Builder(MainActivity.context)
.setTitle("Gestione topic")
.setMessage("Cosa vuoi leggere?")
.setItems(R.array.topicChoices, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
//code here
}
}).setNegativeButton("Annulla", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
dialogInterface.dismiss();
}
}).show();
R.array.topicChoices
<string-array name="topicChoices">
<item>Topic non letti</item>
<item>Risposte non lette</item>
</string-array>
错误在哪里?
谢谢,伙计们。