activitygroup的子活动中的datepicker引发BadTokenException错误

时间:2013-05-22 06:44:24

标签: android datepicker activitygroup

我需要在选项卡式活动中的活动组的子活动中显示两个日期选择器。 两个文本视图的代码和显示日期的按钮是:

  incorp_date=(TextView)findViewById(R.id.edt_incorpdate);
    incorp_date_image=(Button)findViewById(R.id.incorp_date);


    incorp_date_cal=Calendar.getInstance();

    incorp_date_image.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {
            showDialog(DATE_PICKER_INCORP);
        }
    });

    final Calendar c = Calendar.getInstance();
    incorp_year = c.get(Calendar.YEAR);
    incorp_month = c.get(Calendar.MONTH);
    incorp_day = c.get(Calendar.DAY_OF_MONTH);

    /* display the current date (this method is below)  */
    updateIncorpDisplay();


    estb_date=(TextView)findViewById(R.id.edt_estabdate);
    estb_date_image=(Button)findViewById(R.id.estb_date);
    estb_date_cal=Calendar.getInstance();

    estb_date_image.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {
            showDialog(DATE_PICKER_ESTB);
        }
    });
    final Calendar c1 = Calendar.getInstance();
    estb_year = c1.get(Calendar.YEAR);
    estb_month = c1.get(Calendar.MONTH);
    estb_day = c1.get(Calendar.DAY_OF_MONTH);

    /* display the current date (this method is below)  */
    updateEstbDisplay();

显示datepicker对话框的代码是:

incorp_dateListener=new OnDateSetListener() {

        @Override
        public void onDateSet(DatePicker view, int year, int monthOfYear,
                int dayOfMonth) {
            // TODO Auto-generated method stub
            incorp_year = year;
            incorp_month = monthOfYear;
            incorp_day = dayOfMonth;
            updateIncorpDisplay();
        }
    };

    estb_dateListener=new OnDateSetListener() {

        @Override
        public void onDateSet(DatePicker view, int year, int monthOfYear,
                int dayOfMonth) {
            // TODO Auto-generated method stub
            estb_year = year;
            estb_month = monthOfYear;
            estb_day = dayOfMonth;
            updateEstbDisplay();
        }
    };
  @Override
protected Dialog onCreateDialog(int id) {

    switch(id){
        case DATE_PICKER_INCORP:
                return new DatePickerDialog(getParent(), incorp_dateListener, incorp_year, incorp_month, incorp_day); 
            case DATE_PICKER_ESTB:
                return new DatePickerDialog(getParent(), estb_dateListener, estb_year, estb_month, estb_day);
    }
        return null;
}

我无法显示datepicker对话框。 单击按钮时应用程序强制关闭,并引发BadTokenException异常。 我该怎么办???我似乎无法弄清楚问题是什么??? 我想也许是因为它是一个活动组的儿童活动.. 但无法找到任何相关的解决方案.. 请帮忙!!!!

2 个答案:

答案 0 :(得分:1)

做这样的事情

     switch (id) {
case DATE_DIALOG_ID:
 return new DatePickerDialog(getParent(),
             mDateSetListener,
             mYear, mMonth, mDay);
case DATE_DIALOG_ID_RETURN:
 return new DatePickerDialog(getParent(),
   mDateSetListenerreturn,
             mYear, mMonth, mDay);     
 }

我从Android: DatePicker not working inside Actvity

获得了这个解决方案

答案 1 :(得分:1)

尝试这样的事情,首先在 TabActivity 类中创建 tabcontext 对象。就像这样

package com.loanreminder;

import android.app.TabActivity;
import android.os.Bundle;

/**
 * @author Adil Soomro
 * 
 */
public class TabSample extends TabActivity {
    /** Called when the activity is first created. */
    public static TabSample tabContext;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.tabhost);
        tabContext = this;

    }

}

使用此对象后,在您的活动中使用此对象。

protected Dialog onCreateDialog(int id) {

    switch(id){
        case DATE_PICKER_INCORP:
                return new DatePickerDialog(TabSample.tabContext, incorp_dateListener, incorp_year, incorp_month, incorp_day); 
            case DATE_PICKER_ESTB:
                return new DatePickerDialog(TabSample.tabContext, estb_dateListener, estb_year, estb_month, estb_day);
    }
        return null;
}