How to create a custom calendar in an Android app?

I need to create a calendar management application built-in for android 2.1-2.3. I tried to find the built-in and external library to achieve this, but could not. So now I decided to code the calendar myself. I thought about it through a GridView . How can I do it.

If there is code available, create one here. It would be very helpful.

+6
source share
6 answers

I think this is a good Custom Calender Example for SO user .

I use this calendar in my project .

If you have a request, then put comment otherwise accept the answer.

+1
source

May I recommend you read the Google Calendar . In fact, you can simply use their implementation. Using GridView is also not bad. Android also seems to have a CalendarView . I would recommend looking at this, although I'm not sure if this is what you need. It would be helpful to know exactly what you need for the calendar. The question is very broad.

+1
source

You can find It is already completed, but when I was the last time, I added the function on February 29, but it’s good http://w2davids.wordpress.com/android-simple-calendar/

0
source

Ancal is a very good open source calendar for integration and use in your code. The code for this calendar can be found here: https://code.google.com/p/ancal/source/checkout

0
source

Hello brother If your work on a web application in Android means you can use jquery to help you make your calendar effective, or you can look at this link, it can help you

http://developer.android.com/guide/topics/providers/calendar-provider.html#intents

0
source

you can use the calendar API which is available in android 4.

http://developer.android.com/guide/topics/providers/calendar-provider.html

If your application should be in android 2.0, you can add the android 4 library to your project.

I think this is the easiest way to create your own calendar.

0
source

Source: https://habr.com/ru/post/886210/


All Articles