All Projects → xiaojianglaile → Calendar

xiaojianglaile / Calendar

Android日历 仿小米 华为 滴答清单 365日历(农历),周视图 月视图 平滑滚动 节假日 五六行周切换 week or month calendar

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Calendar

ccalendar
Chinese Calendar in calendar(1) for BSD, Linux & macOS
Stars: ✭ 17 (-98.56%)
Mutual labels:  calendar, chinese
chinese-calendar
🔖 Chinese calendar control in C#
Stars: ✭ 22 (-98.14%)
Mutual labels:  calendar, chinese
Chinese Lunar Calendar For Mac
Chinese Lunar Calendar for Mac
Stars: ✭ 150 (-87.32%)
Mutual labels:  chinese, calendar
Chinese Calendar
📅 中国农历(阴历)与阳历(公历)转换与查询工具
Stars: ✭ 428 (-63.82%)
Mutual labels:  chinese, calendar
Nezha chinese pytorch
NEZHA: Neural Contextualized Representation for Chinese Language Understanding
Stars: ✭ 65 (-94.51%)
Mutual labels:  chinese
Offline Calendar
Archived
Stars: ✭ 63 (-94.67%)
Mutual labels:  calendar
Vishnucalendar
Stars: ✭ 63 (-94.67%)
Mutual labels:  calendar
Life Calendar
📆 Online calendar of your Life in Weeks.
Stars: ✭ 62 (-94.76%)
Mutual labels:  calendar
Calendarview2
Calendar view for Android. Pretty.
Stars: ✭ 72 (-93.91%)
Mutual labels:  calendar
Rasa nlu chi
Turn Chinese natural language into structured data 中文自然语言理解
Stars: ✭ 1,166 (-1.44%)
Mutual labels:  chinese
Horizontal Calendar
A material horizontal calendar view for Android based on RecyclerView
Stars: ✭ 1,155 (-2.37%)
Mutual labels:  calendar
Localization Zh Cn Plugin
Chinese Localization for Jenkins
Stars: ✭ 65 (-94.51%)
Mutual labels:  chinese
Chinese Hershey Font
Convert Chinese Characters to Single-Line Fonts using Computer Vision
Stars: ✭ 70 (-94.08%)
Mutual labels:  chinese
Typeset
自动修正中文、英文、代码混合排版中的全半角、空格等问题
Stars: ✭ 63 (-94.67%)
Mutual labels:  chinese
Dategrid
A customizable swiftui calendar
Stars: ✭ 71 (-94%)
Mutual labels:  calendar
I3 Agenda
Show your next google calendar event in polybar or i3-bar
Stars: ✭ 62 (-94.76%)
Mutual labels:  calendar
Calendarnotification
Android app extending calendar notifications with snooze button and notifications persistence
Stars: ✭ 67 (-94.34%)
Mutual labels:  calendar
Learn Vim
Vim 实操教程(Learning Vim)Vim practical tutorial.
Stars: ✭ 1,166 (-1.44%)
Mutual labels:  chinese
Copywriting Correct
中英文文案排版纠正器
Stars: ✭ 67 (-94.34%)
Mutual labels:  chinese
Jquery Calendar
A responsive jquery calendar scheduler built with bootstrap and moment.js
Stars: ✭ 67 (-94.34%)
Mutual labels:  calendar

Calendar(觉得好用记得帮忙Star哦)

注意事项:

该Demo没有进行网络数据的联调,使用了本地数据库进行存储数据,有需要网络配置的可删除本地数据库相关代码,再去进行网络数据显示即可。

交流QQ群:

小江Android交流群(259194144),进群备注Android、Github之类的关键词即可。

使用方法:

  • MonthCalendarView的使用
<com.jeek.calendar.widget.calendar.month.MonthCalendarView
    android:id="@+id/mcvCalendar"
    android:layout_width="match_parent"
    android:layout_height="@dimen/small_month_calendar_height"
    app:month_day_text_size="@integer/small_calendar_text_size"
    app:month_selected_circle_color="@color/color_select_date_dialog_edit_text_bg_focus"
    app:month_selected_circle_today_color="@color/color_select_date_dialog_edit_text_bg_focus"
    app:month_show_lunar="true"
    app:month_show_task_hint="false"
    app:month_show_holiday_hint="true"
    app:month_text_size="@integer/small_calendar_text_size"/>
  • ScheduleLayout的使用

layout_schedule.xml文件,必须包含MonthCalendarView、WeekCalendarView和ScheduleRecyclerView,可以直接引用改文件作为布局。

ScheduleLayout:
app:default_view="week" <!-默认周视图->
app:default_view="month" <!-默认月视图->
app:auto_change_month_row="false" <!-不自动改变五六行->
app:auto_change_month_row="true" <!-自动改变五六行->
  • 设置日期监听
slSchedule.setOnCalendarClickListener(new OnCalendarClickListener() {
    @Override
    public void onClickDate(int year, int month, int day) {
        //监听获得点击的年月日
    }
});
  • 跳转到今天
slSchedule.getMonthCalendar().setTodayToView();
  • 跳转到某一天
slSchedule.initData(year, month, day);
  • 缺点

该日历暂时没有支持无限循环,需要查看很多日期的朋友可以在MonthAdapter和WeekAdapter调高SIZE的大小即可。

效果图:

image image

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].