Android DatePicker 初始化不起作用

发布于 2024-11-24 23:37:41 字数 218 浏览 1 评论 0原文

我有:

((DatePicker) findViewById(R.id.my_id)).init(2011, 1, 1, pickerListener);

当我运行这个时,我有 nullPointerException。

pickerListener 已创建。并且 onDateChanged 为空。

什么可以解决问题?

I have:

((DatePicker) findViewById(R.id.my_id)).init(2011, 1, 1, pickerListener);

And when I run this, I have nullPointerException.

pickerListener is created. And onDateChanged is empty.

What could solve the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不气馁 2024-12-01 23:37:41

在调用 findViewById 之前调用 setContentView。否则,您将从 findViewById 获取 Null

例如,如果 my_idmain.xml 中定义:

setContentView(R.layout.main);
((DatePicker) findViewById(R.id.my_id)).init(2011, 1, 1, pickerListener);

Call setContentView before calling findViewById. Otherwise you will get Null from findViewById

For example, if my_id is defined in main.xml:

setContentView(R.layout.main);
((DatePicker) findViewById(R.id.my_id)).init(2011, 1, 1, pickerListener);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文