new AlertDialog.Builder(AOrder.this).setTitle("单选框").setIcon(
android.R.drawable.ic_dialog_info).setSingleChoiceItems(
new String[] { "查询", "消费" }, 0,
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
}).show();
一个单选框,选择查询输出1  选择消费输出2.  菜鸟求方法?