在 Android 应用程序中显示日历

发布于 2024-12-09 03:45:28 字数 223 浏览 0 评论 0原文

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

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

但实际上它也不起作用,给出例外。 谁能帮我如何显示日历。 任何帮助将不胜感激。 期待解决方案。 谢谢

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

惯饮孤独 2024-12-16 03:45:29

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

,请参阅这个,它会对您有所帮助。

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.

看春风乍起 2024-12-16 03:45:29

如果您需要为您的应用程序定制日历,您可以使用下面的库。

https://github.com/ik024/CalendarLibrary

输入图像描述这里在此处输入图像描述

希望有帮助。

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

https://github.com/ik024/CalendarLibrary

enter image description hereenter image description here

Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文