使用此方法时出现错误
protected Dialog onCreateDialog(int id){
switch(id){
case DATE_PICKER_DIALOG:
return showDatePicker();
case TIME_PICKER_DIALOG:
return shoeTimePicker();
}
return super.
正如你所看到的,return 语句每次都会给我一个语法错误return super.onCreateDialog(id);
。这是我想用它的另一种方式吗?
另外,当我实现 showDialog() 时。它给了我语法
有人知道吗??