Looking for a good datepicker calendar for Android

I am looking for a good dumper that looks like this enter image description here

but not

enter image description here

or

enter image description here

any ideas?

+8
android calendar datepicker
source share
4 answers

As I made a comment about creating your calendar view using GridView, check out this tutorial for an exact example with a custom adapter for GridView.

Example - 2 to create a calendar as shown below:

enter image description here

+3
source share

Create your own custom view or use this

0
source share

You may have to build it yourself, however it should be pretty simple. Just enlarge the gridView, line up your weekdays at the top, and then skip the Dates by setting them to the corresponding Grid view element. You set the date to be the first of a given month, see what day of the week it is, and then go from there.

If you want a fantasy, you can go back to the previous month to set the first few days of the month (for those that do not start on the 1st) and similarly at the end of the month (exactly as shown in the figure in your desired example) .

Each Grid element must contain its own Date object so that you can capture clicks and pass them along with some calling class.

If you want to get REALLY stunning with it, make an animation in which dates are dated (maybe set a timer and wait 20 milliseconds per square when you draw them). This makes it easier for the user to see them moving from month to month.

0
source share

What I have found so far:

The tutorial looks amazing.

0
source share

All Articles