Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/179.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
来自警报对话框的android日期选择器_Android_Datepicker_Android Datepicker - Fatal编程技术网

来自警报对话框的android日期选择器

来自警报对话框的android日期选择器,android,datepicker,android-datepicker,Android,Datepicker,Android Datepicker,我正在尝试从警报对话框启动日期选择器。但是由于某些原因,showDialog(日期对话框ID)根本没有打开。请告诉我怎么了 final AlertDialog.Builder alt_bld = new AlertDialog.Builder(this); alt_bld.setIcon(R.drawable.icon); alt_bld.setTitle("Categories"); alt_bld.setSingleChoiceItems(ca

我正在尝试从警报对话框启动日期选择器。但是由于某些原因,showDialog(日期对话框ID)根本没有打开。请告诉我怎么了

final AlertDialog.Builder alt_bld = new AlertDialog.Builder(this);
        alt_bld.setIcon(R.drawable.icon);
        alt_bld.setTitle("Categories");
        alt_bld.setSingleChoiceItems(categoryType, -1, new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int item) {
                System.out.println("Category selected= "+categoryType[item]);
                Toast.makeText(getApplicationContext(), "Category selected= "+categoryType[item], Toast.LENGTH_SHORT).show();
                category=categoryType[item];


                if(category.equalsIgnoreCase("Time")){
                    showDialog(DATE_DIALOG_ID);
                    System.out.println("selected date here:"+selectedDate);
                    Intent intent = new Intent(MainActivity.this, ListViewActivity.class);
                    bundle.putString("category", category);
                    bundle.putString("attribute", selectedDate);
                    intent.putExtras(bundle);
                    startActivity(intent);

                }
其他日期选择器相关代码

static final int DATE_DIALOG_ID = 0;



@Override
    protected Dialog onCreateDialog(int id) {
        switch (id) {
        case DATE_DIALOG_ID:
            return new DatePickerDialog(this,
                        mDateSetListener,
                        mYear, mMonth, mDay);
        }
        return null;
    }   


    private DatePickerDialog.OnDateSetListener mDateSetListener =
        new DatePickerDialog.OnDateSetListener() {


        public void onDateSet(DatePicker view, int year,
                              int monthOfYear, int dayOfMonth) {
            mYear = year;
            mMonth = monthOfYear;
            mDay = dayOfMonth;
            selectedDate = Integer.toString(mMonth)+"-"+Integer.toString(mDay)+"-"+Integer.toString(mYear);
            System.out.println("selected date is:"+selectedDate);
        }


    };

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.homescreen);

        final Calendar cal = Calendar.getInstance();
        mYear = cal.get(Calendar.YEAR);
        mMonth = cal.get(Calendar.MONTH);
        mDay = cal.get(Calendar.DAY_OF_MONTH);

在您的代码中,您正在调用showDialog(int);并立即启动新的意图。你希望看到怎样的对话。实际上,由于对话框未关闭,将导致内存泄漏。

在代码中,您正在调用showDialog(int);并立即启动新的意图。你希望看到怎样的对话。实际上,由于对话框未关闭,将导致内存泄漏