在Android应用程序中显示日历

时间:2011-10-12 07:12:14

标签: android calendar

我正在制作一个Android应用程序,我需要在其中显示日历..我已经搜索了很多但没有得到任何有用的结果。 我还从以下链接下载了日历项目:

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

但它也没有工作实际上给予例外。 任何人都可以帮我如何显示日历。 任何帮助都会很有帮助。 期待解决方案。 感谢

2 个答案:

答案 0 :(得分:0)

DatePicker它的标准小部件我不认为它确实存在问题

<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); 

请参阅this它对您有所帮助。

答案 1 :(得分:0)

如果您的应用需要自定义日历,可以使用以下库。

https://github.com/ik024/CalendarLibrary

enter image description here enter image description here

希望它有所帮助。