帮助!如何创建 Android 日历应用程序?

发布于 2024-11-28 18:39:32 字数 160 浏览 2 评论 0原文

我创建了一个 GridView 来管理日历应用程序。这个想法是,用户将能够添加文本和图像到特定日期,并查看网格中的事件。

是否有任何日历库或内置类可以用来代替 GridView,或者是否有人有专门为此(或类似)目的使用 GridView 的经验?

带有代码的答案将非常感激。

I have created a GridView to manage a Calendar application. The idea is that the user will be able to add text and images to specific days, and view events in the grid.

Are there any calendar libraries or built-in classes that I could use instead of GridView, or does anyone have experience using a GridView specifically for this (or a similar) purpose?

Answers with code would be very appreciated.

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

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

发布评论

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

评论(1

奶茶白久 2024-12-05 18:39:32

Android 3.0 (API 11) 没有创建自己的网格并尝试从头开始构建此日历,而是内置了 日历视图。在dev页面上,该视图的描述如下:

此类是用于显示和选择日期的日历小部件。
此日历支持的日期范围是可配置的。一个用户
可以通过点击来选择日期,并且可以滚动和滑动
日历到所需的日期。

尽管您无法直接在此 View 中键入内容,但您可以允许用户选择日期,并使用所选日期打开一个新的 Activity,让他或她使用以下命令添加文本EditText,或选择一张照片。

Instead of creating your own grid and attempting to build this calendar from scratch, Android 3.0 (API 11) has a built in Calendar View. On the dev page, this view is described as follows:

This class is a calendar widget for displaying and selecting dates.
The range of dates supported by this calendar is configurable. A user
can select a date by taping on it and can scroll and fling the
calendar to a desired date.

Although you cannot type directly in this View, you can allow the user to select the date, and using the selected date open a new Activity that lets him or her add text using an EditText, or choose a photo.

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