Trying to set text of EditText from DatePicker DialogFragment

白昼怎懂夜的黑 提交于 2019-11-28 06:23:47

问题


I am simply trying to get the date from a datepicker dialog I created from one of the many android datepicker tutorials I found online. I seem to be going wrong somewhere in the actual retrieving of the text date once it is selected. I have a DatePickerFragment class, which is called from a CreateEvent fragment which is nested inside my MainActivity activity class. This is the DatePicker:

public class DatePickerFragment extends DialogFragment
        implements DatePickerDialog.OnDateSetListener {

    private EditText txtDate;
    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        // Use the current date as the default date in the picker
        final Calendar c = Calendar.getInstance();
        int year = c.get(Calendar.YEAR);
        int month = c.get(Calendar.MONTH);
        int day = c.get(Calendar.DAY_OF_MONTH);
        // Create a new instance of DatePickerDialog and return it
        return new DatePickerDialog(getActivity(), this, year, month, day);
    }

    public void onDateSet(DatePicker view, int year, int month, int day) {
        txtDate = (EditText)view.findViewById(R.id.txtDate);
        txtDate.setText(day + " " + (month + 1) + " " + year);
    }
}

I get Attempt to invoke virtual method 'void android.widget.EditText.setText(java.lang.CharSequence) on a null object reference when I actually try and set the date, which I understand means it can't actually find the edittext element in my create event fragment xml file.

How should I go about setting the text of this edittext element from onDateSet or do I have to change my approach?

I tried it this way but to no avail.


回答1:


You need to use an interface to get the data from the datepicker to the caller fragment:

public interface DateListener {
    void passDate(String date);
}

Create a member variable called mListener:

private DateListener mListener;

Override the onAttach & onDetach fragment methods:

@Override
public void onAttach(Activity activity) {
    super.onAttach(activity);
    try {
        mListener = (DateListener) activity;
    } catch (ClassCastException e) {
        throw new ClassCastException(activity.toString() + " must implement DateListener");
    }
}

@Override
public void onDetach() {
    super.onDetach();
    mListener = null;
}

Next, implement this interface in the caller fragment and override the passDate method:

@Override
public void passDate(String date) {
    // Do something with 'date', yourEditText.setText(date) for the example
}

And you should be good to go.




回答2:


I have done this by below lines of code:

public class DatePickerDialogMy extends DialogFragment {
    @Override
    public Dialog onCreateDialog(Bundle savedInstanceState) {
        DateSetting dateSetting=new DateSetting(getActivity());
        Calendar calendar= Calendar.getInstance();
        int year= calendar.get(calendar.YEAR);
        int month=calendar.get(calendar.MONTH);
        int day=calendar.get(calendar.DAY_OF_MONTH);
        DatePickerDialog dialog;
        dialog=new DatePickerDialog(getActivity(),dateSetting,year,month,day);
        return dialog;
    }
}

Second Class:

        public class DateSetting implements android.app.DatePickerDialog.OnDateSetListener {
            Context context;
            public DateSetting(Context context){
                this.context=context;

            }
            @Override
            public void onDateSet(DatePicker view, int year, int dateSetting, int dayOfMonth) {
                Toast.makeText(context, "selected date:" + dateSetting + "/" + dayOfMonth + "/" + year, Toast.LENGTH_LONG).show();
        //        MainActivity.test.setText(String.valueOf(dateSetting));
                MyActivity.dobEditText.setText(dateSetting+"/"+dayOfMonth+ "/" + year);
            }
        }

How to call:

 DatePickerDialogMy datePickerDialog = new DatePickerDialogMy();
                datePickerDialog.show(getSupportFragmentManager(), "date_picker");


来源:https://stackoverflow.com/questions/33708631/trying-to-set-text-of-edittext-from-datepicker-dialogfragment

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!