Android Calendar Sample like Google Calendar

32,187

Solution 1

If you want to manage your schedule in a calendar, you can integrate Google Calendar, check Google Calendar API. This is a tutorial showing you how to integrate it.

If you just want to select a date through a popped-up calendar view, you could look for third-party calendar libraries, like android-times-square, Android-MonthCalendarWidget...and google to find more.

Solution 2

I made this Calendar Library for Android as part of my side project. Hope it helps someone, below is the link to the github and it has all the instructions on how to use it. If you still come across any difficulty implementing it let me know. Happy to help.

https://github.com/ik024/CalendarLibrary

enter image description here enter image description here

Thanks.

Solution 3

Sample apps:

  1. http://droidwalk.blogspot.in/2012/11/android-calendar-sample.html#more
  2. http://examples.javacodegeeks.com/android/core/widget/android-calendarview-example/
  3. http://www.edumobile.org/android/calendar-application
  4. http://www.androidhub4you.com/2012/10/custom-calendar-in-android.html
  5. There are more just Google them out...
Share:
32,187
Rahbee Alvee
Author by

Rahbee Alvee

I love to write code that helps to make people's life easy!

Updated on April 05, 2020

Comments

  • Rahbee Alvee
    Rahbee Alvee about 4 years

    I would like to add a calendar in my android app where user can see their daily schedule, just like google calendar app. Any sample project or guideline is appreciated.

  • Ninja Coding
    Ninja Coding over 7 years
    what are the advantages of use this library?
  • ik024
    ik024 over 7 years
    @Kuriel U can customize the look and feel of the calendar to match with your app theme.
  • Chris Neve
    Chris Neve over 6 years
    Does it show events? Or is it just a datepicker?
  • Chris Neve
    Chris Neve over 6 years
    This is just a datepicker I presume? It doesn't integrate with a calendar provider and display events?
  • CookieMonster
    CookieMonster over 6 years
    This is a custom calendar that is build from ViewPager, GridLayout and java.util.Calendar.
  • ik024
    ik024 over 6 years
    @ChrisNeve If you are asking if it automatically fetches events from google and show it then no it does not but you can pass in the dates and it will mark those dates as shown above.
  • Chris Neve
    Chris Neve over 6 years
    Is there any way it can show several events per day, in the month view, with different lines/dots of different colours in each day?
  • ik024
    ik024 over 6 years
    @ChrisNeve No it does not have that feature yet
  • Naveen
    Naveen over 4 years
    How to customize above Calendar like adding events to specific date with count and also how to customize theme ?Please help me on this