当我将日期选择器添加到我的活动时。它被正确添加。它的日期和月份部分是正确的,但是,年份部分显示的是日历。我也收到此错误-
The following classes could not be found:
- CalendarView (Change to android.widget.CalendarView, Fix Build Path, Edit XML)
- DatePicker (Change to android.widget.DatePicker, Fix Build Path, Edit XML)
这是日期选择器代码 -
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<DatePicker
android:id="@+id/datePicker1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
这是我得到的输出(请忽略音量图像)。
我想将它添加到我的应用程序中,以便我可以输入用户的出生日期。但由于年份部分(日历),它看起来不太好。
可能是什么问题?请帮忙。