开源库挖掘&推荐

CalenderView,高效优雅的日历选择器

2017-09-14  本文已影响17人  5afd372c86ba
名称 CalenderView
语言 Android
平台 GitOSC
作者 黄海彬
链接 点此进入

平时日常开发遇到日期选择功能,每次都是调用系统的日期选择器,系统自带的日期选择器在不同安卓系统版本样式都不一样,一来跟自身APP风格不一致,二来不支持自定义样式,样式简单。今天推荐的这块日期选择器,支持标记、自定义颜色、农历等。采用Canvas绘制,速度快、占用内存低。


使用方法
  1. 添加依赖
compile 'com.haibin:calendarview:2.0.1'
  1. 在布局文件添加控件
<com.haibin.calendarview.CalendarLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        app:calendar_content_view_id="@+id/recyclerView">

        <com.haibin.calendarview.CalendarView
            android:id="@+id/calendarView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#fff"
            app:current_month_text_color="#333333" //app工作空间下的属性均为自定义日历样式的属性
            app:lunar_text_color="#CFCFCF"
            app:min_year="2004"
            app:other_month_text_color="#e1e1e1"
            app:scheme_text="假"
            app:scheme_text_color="#fff"
            app:scheme_theme_color="#2eb654"
            app:scheme_theme_style="fill"
            app:selected_text_color="#333"
            app:selected_theme_color="#108cd4"
            app:show_lunar="true"
            app:selected_theme_style="stroke"
            app:week_background="#fff"
            app:week_text_color="#111" />

        ......
</com.haibin.calendarview.CalendarLayout>
  1. 可供调用的API
public int getCurDay(); //今天
public int getCurMonth(); //当前的月份
public int getCurYear(); //今年
public void showSelectLayout(final int year); //快速弹出年份选择月份
public void closeSelectLayout(final int position); //关闭选择年份并跳转日期
public void setOnDateChangeListener(OnDateChangeListener listener);//添加事件
public void setOnDateSelectedListener(OnDateSelectedListener listener);//日期选择事件
public void setSchemeDate(List<Calendar> mSchemeDate);//标记日期
public void update();//动态更新
public Calendar getSelectedCalendar(); //获取选择的日期

/**
  * 设置背景色
  *
  * @param monthLayoutBackground 月份卡片的背景色
  * @param weekBackground        星期栏背景色
  * @param lineBg                线的颜色
 */
public void setBackground(int monthLayoutBackground, int weekBackground, int lineBg)

/**
  * 设置文本颜色
  *
  * @param curMonthTextColor 当前月份字体颜色
  * @param otherMonthColor   其它月份字体颜色
  * @param lunarTextColor    农历字体颜色
 */
public void setTextColor(int curMonthTextColor,int otherMonthColor,int lunarTextColor)

/**
  * 设置选择的效果
  *
  * @param style              选中的style CalendarCardView.STYLE_FILL or CalendarCardView.STYLE_STROKE
  * @param selectedThemeColor 选中的标记颜色
  * @param selectedTextColor  选中的字体颜色
 */
public void setSelectedColor(int style, int selectedThemeColor, int selectedTextColor)

/**
  * 设置标记的色
  *
  * @param style           标记的style CalendarCardView.STYLE_FILL or CalendarCardView.STYLE_STROKE
  * @param schemeColor     标记背景色
  * @param schemeTextColor 标记字体颜色
 */
public void setSchemeColor(int style, int schemeColor, int schemeTextColor)


/**
  * 设置星期栏的背景和字体颜色
  *
  * @param weekBackground 背景色
  * @param weekTextColor  字体颜色
 */
public void setWeeColor(int weekBackground, int weekTextColor)

更多使用方法,请查看该项目的GitOSC Page

上一篇下一篇

猜你喜欢

热点阅读