DatePicker android:calendarViewShown
I've the following code:
<DatePicker
android:id="@+id/datepicker"
android:layout_width="wrap_content"
开发者_Go百科 android:layout_height="wrap_content"
android:calendarViewShown="true" />
But the attribute android:calendarViewShown
is not working. Why?
That's only available for API 11 and higher. Are you targeting a lower one?
精彩评论