当前位置: 代码迷 >> Android >> 求指教The following classes could not be found: - DatePicker解决思路
  详细解决方案

求指教The following classes could not be found: - DatePicker解决思路

热度:724   发布时间:2016-04-28 05:42:48.0
求指教The following classes could not be found: - DatePicker
使用eclipse在做安卓的界面布局时,拉控件DatePicker到Activity_main.xml的窗口后,
在窗口下方提示:The following classes could not be found: - DatePicker(Change to android.widget.DatePicker, Fix Build Path, Edit XML).

请问怎么解决!(用的android4.1.2)
------解决方案--------------------
可以在java代码中  声明import com.android.internal.R;

mDatePicker = (DatePicker) view.findViewById(R.id.datePicker);
mDatePicker.init(year, monthOfYear, dayOfMonth, this);
就可以获取DatePicker对象  

如果LZ想创建一个DatePickerDialog就可以直接.. 
final Calendar calendar = Calendar.getInstance();
DatePickerDialog d = new DatePickerDialog(
                getActivity(),
                this,
                calendar.get(Calendar.YEAR),
                calendar.get(Calendar.MONTH),
                calendar.get(Calendar.DAY_OF_MONTH));
------解决方案--------------------
[size=18px][size=16px]我今天遇到了这个问题,经过研究,终于解决了,这个问题说明,有些API版本不稳定,不支持像TimePicker等一些控件的所见及所得操作,也就是在Eclipse中拖放过程中会报错和警告。
总结:Android 4.2.2和Android 4.3不支持上述情况。
解决方法:将当前工程的API版本改成2.3.3(如果是2.0以上的应用的话)或4.0(如果是4.0以上的应用的话)。经过测试,这两个版本均为稳定版本,所以可避免该问题。
(小弟见解,不足之处见谅,仅供参考)
[/size][/size]
  相关解决方案