Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DatePicker android:calendarViewShown

I've the following code:

<DatePicker
    android:id="@+id/datepicker"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:calendarViewShown="true" />

But the attribute android:calendarViewShown is not working. Why?
It's in the Android Developer's Guide.

like image 669
user672512 Avatar asked Aug 23 '26 15:08

user672512


1 Answers

That's only available for API 11 and higher. Are you targeting a lower one?

like image 92
Spencer Avatar answered Aug 26 '26 07:08

Spencer