アクティビティに日付ピッカーを追加するとき。正しく追加されます。日付と月の部分は適切ですが、年の部分はカレンダーを表示しています。私もこのエラーが発生しています-
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" />
これは私が得ている出力です(ボリューム画像は無視してください)。
ユーザーから生年月日を入力できるように、アプリに追加したいと思います。しかし、年の部分(カレンダー)のために、それはよく見えません。
何が問題なのですか?助けてください。