其他分享
首页 > 其他分享> > 救命!如何为Android创建日历应用?

救命!如何为Android创建日历应用?

作者:互联网

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

是否有任何我可以使用的日历库或内置类而不是GridView,或者是否有人有使用GridView专门用于此(或类似)目的的经验?

代码的答案将非常感激.

解决方法:

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

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.

虽然您无法直接在此视图中键入,但您可以允许用户选择日期,并使用所选日期打开一个新的活动,让他或她使用EditText添加文本,或选择一张照片.

标签:android,calendar,android-gridview
来源: https://codeday.me/bug/20190713/1451419.html