0

I wanted to only display the calendar part from the DatePicker dialog. Is there a way to hide the highlighted region in blue?

enter image description here

Ali_Waris
  • 1,944
  • 2
  • 28
  • 46
  • Does this help: https://stackoverflow.com/questions/10233760/remove-year-from-datepickerdialog – Ricky Jul 15 '21 at 07:21

1 Answers1

0

You could try something like this:

XML:

<DatePicker
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:datePickerMode="spinner"
            android:spinnersShown="false"/>
PioSwi
  • 406
  • 2
  • 10