1

我正在使用 Robotium 来测试我的项目。在测试中,当我调用 datePickerDialog.getDatePicker() 时,我总是得到一个 NullPointerExcpetion。

我的 DatePickerDialogFragment 代码:

public class DatePicker_Fragment extends SherlockDialogFragment{
    public static final int START_DATE = 1;
    public static final int END_DATE = 2;
    public static final String TAG = "DatePicker";
    private OnDateSetListener listener_m;

    public DatePicker_Fragment(){

    }

    @SuppressLint("NewApi")
    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {       

        //get the current time
        Calendar calendar = Calendar.getInstance();
        int year = calendar.get(Calendar.YEAR);
        int month = calendar.get(Calendar.MONTH);
        int day = calendar.get(Calendar.DAY_OF_MONTH);

        //create the dialog
        DatePickerDialog datePickerDialog = new DatePickerDialog(getSherlockActivity(),listener_m,year, month, day);
        if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB){
            //datePickerDialog.getDatePicker().setSpinnersShown(false);
            //datePickerDialog.getDatePicker().setCalendarViewShown(true);
        }

        return datePickerDialog;
    }

    public void setListener(OnDateSetListener listener){
        listener_m = listener;
    }

}

这是我的测试中的相关代码

//Select the start date
TextView startDate = (TextView) solo.getView(R.id.tv_StartDate);
solo.clickOnView(startDate);

//wait for dialog fragment
solo.waitForFragmentByTag(DatePicker_Fragment.TAG);


//set the start date
SherlockFragmentActivity current_activity = (SherlockFragmentActivity) solo.getCurrentActivity();
DatePicker_Fragment dp_frag = (DatePicker_Fragment) current_activity.getSupportFragmentManager().findFragmentByTag(DatePicker_Fragment.TAG);
DatePickerDialog dp_dialog = (DatePickerDialog) dp_frag.getDialog();
DatePicker datePicker = dp_dialog.getDatePicker();
solo.setDatePicker(datePicker,2013,6,21);
solo.clickOnText("Set");

我总是在调用时收到 NullPointerExceptiondp_dialog.getDatePicker()

4

1 回答 1

0

好的,事情是我早在显示片段之前就调用了 dp_frag.getDialog()。因此,我修改了我的代码如下:

       //wait for dialog fragment
        solo.waitForFragmentByTag(DatePicker_Fragment.TAG);

        //get a reference to dialog fragment
        SherlockFragmentActivity current_activity = (SherlockFragmentActivity) solo.getCurrentActivity();
        DatePicker_Fragment dp_frag = (DatePicker_Fragment) current_activity.getSupportFragmentManager().findFragmentByTag(DatePicker_Fragment.TAG);

        //wait until dialog fragment is visible on screen
        assertNotNull(dp_frag);
        while(!(dp_frag.isShown())){
            Log.w(getName(), "Dialog fragment visible " + dp_frag.isShown());
            solo.sleep(100);
        }

        //set the start date
        DatePickerDialog dp_dialog = (DatePickerDialog) dp_frag.getDialog();
        assertNotNull(dp_dialog);
        DatePicker datePicker = dp_dialog.getDatePicker();
        solo.setDatePicker(datePicker,2013,5,21);
        solo.clickOnView(dp_dialog.getButton(DatePickerDialog.BUTTON_POSITIVE));

在 DatePickerDialogFragment 我添加了以下方法:

public boolean isShown(){
    if(getDialog() == null){
        return false;
    }else{
        return true;
    }
}
于 2013-06-04T12:47:19.190 回答