Search code examples
androidandroid-widgetandroid-datepicker

how to change datepicker holotheme day view in android


How can I change this days view to normal? I mean to display days not in a month view calendar, but in a form like months and years?

 <DatePicker
            android:id="@+id/datePicker"
            android:layout_width="312dp"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dp" />

holotheme


Solution

  • If I understand your question correctly, you want to hide the calendar view but still display the day/month/year selector. To achieve that, change your XML to the following:

    <DatePicker
        android:id="@+id/datePicker"
        android:layout_width="312dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"
        android:calendarViewShown="false" />