我收到此 R.array 错误。我输入 R 后它没有显示在列表中。我尝试删除R.java
但仍然无法正常工作
private void openNewGameDialog()
{
new AlertDialog.Builder(this).setTitle("Choose a Category").setItems(R.array.category, new DialogInterface.OnClickListener() //alert dialog which will show list of categories to select
{
public void onClick(DialogInterface dialoginterface, int i)
{
startGame(i);
}
}).show();
}