android – 从DialogFragment(DatePicker)检索和设置数据

android – 从DialogFragment(DatePicker)检索和设置数据,第1张

概述当我按下活动上的按钮时,将调用我的DialogFragment类.我希望通过此DialogFragment设置的日期显示在按钮文本上. FindViewById拒绝被类识别. 我找到了similar question,但我无法将其与我的案例联系起来. 码: >调用Dialogue片段的按钮: public void datepicker(View v) { DialogFragment n 当我按下活动上的按钮时,将调用我的DialogFragment类.我希望通过此DialogFragment设置的日期显示在按钮文本上.
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)检索和设置数据所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1123130.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存