FindVIEwByID拒绝被类识别.
我找到了similar question,但我无法将其与我的案例联系起来.
码:
>调用Dialogue片段的按钮:
public voID datepicker(VIEw v) { DialogFragment newFragment = new DatePickerFragment(); newFragment.show(getFragmentManager(),"datePicker"); }
>对话片段代码:
public class DatePickerFragment extends DialogFragment implements DatePickerDialog.OnDateSetListener { @OverrIDe public Dialog onCreateDialog(Bundle savedInstanceSateate) { 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); return new DatePickerDialog(getActivity(),this,year,month,day); } public voID onDateSet(DatePicker vIEw,int year,int month,int day) { // Do something with the date chosen } }}解决方法 在DialogFragment中负责在用户设置日期时收到通知的方法中,执行此 *** 作
button activitybutton = (button)getActivity().findVIEwByID(R.ID.mybutton);activitybutton.setText (myDate);总结
以上是内存溢出为你收集整理的android – 从DialogFragment(DatePicker)检索和设置数据全部内容,希望文章能够帮你解决android – 从DialogFragment(DatePicker)检索和设置数据所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)