so im creating a program that displays a DatePicker
, but every time i run it on my device, im getting this output here is the picture :
and i want to change that into this :
how can i do that? Thanks :)
so im creating a program that displays a DatePicker
, but every time i run it on my device, im getting this output here is the picture :
and i want to change that into this :
how can i do that? Thanks :)
set the "android:calendarViewShown" value to false like below and you are done
<DatePicker
android:id="@+id/datePicker1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:calendarViewShown="false"
/>