Android DatePicker 初始化不起作用
我有:
((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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在调用
findViewById
之前调用setContentView
。否则,您将从findViewById
获取 Null例如,如果
my_id
在main.xml
中定义:Call
setContentView
before callingfindViewById
. Otherwise you will get Null fromfindViewById
For example, if
my_id
is defined inmain.xml
: