Guys, in onCreateDialog i have this:
case DIALOG_REVIEW: { if (bundle.containsKey(\"POSITION\")) { final int position = bundle.getInt(\"POSITION\");
You need to use getListView method from AlertDialog class. Then use setItemChecked method on returned object. Example:
alertDialog.getListView().setItemChecked(1, true);