0

I am making an android app in which I need to display calendar.. I have searched a lot but not getting any useful result. I have also downloaded project of calendar from following link:

http://code.google.com/p/android-calendar-view/downloads/list

But it is also not working infact giving exception. CAn anyone help me how to display calendar. Any help will be much appriciated. Looking forward for solution. Thanks

ekjyot
  • 2,247
  • 7
  • 39
  • 63

2 Answers2

0

If you need a custom calendar for your app you can use below library.

https://github.com/ik024/CalendarLibrary

enter image description here enter image description here

Hope it helps.

ik024
  • 3,566
  • 7
  • 38
  • 61
0

DatePicker its standart widget i dont think that it is really problem

<DatePicker
 android:layout_width="wrap_content"
 android:layout_height="wrap_content" >

...
// Required Java init code:
DatePicker dp = 
     (DatePicker)this.findViewById(R.id.widget27);

// for example init to 1/27/2008, no callback 
dp.init(2008, 0, 27, Calendar.SUNDAY, null); 

see this it can be helpful for you.

Remees M Syde
  • 2,564
  • 1
  • 19
  • 42
Blackbern
  • 257
  • 3
  • 4