安卓开发的日期选择控件

来源:互联网 发布:知乎热门话题 编辑:程序博客网 时间:2024/05/21 06:02

目前初学,作业项目上需要使用到这个,这个感觉从下面弹出的方式还挺简洁,配置使用什么的也很方便,先使用着,等过段时间回来拜读代码


PickTime

日期选择控件

效果

这里写图片描述

DateType

  • TYPE_ALL--年、月、日、星期、时、分
  • TYPE_YMDHM--年、月、日、时、分
  • TYPE_YMDH--年、月、日、时
  • TYPE_YMD--年、月、日
  • TYPE_HM--时、分

how to use

  • Add it in your root build.gradle at the end of repositories:
        allprojects {           repositories {            ...            maven { url 'https://jitpack.io' }        }        }
  • Add the dependency

    dependencies {        compile 'com.github.codbking:PickTime:v1.0.1'}
  • java

        DatePickDialog dialog = new DatePickDialog(this);    //设置上下年分限制    dialog.setYearLimt(5);    //设置标题    dialog.setTitle("选择时间");    //设置类型    dialog.setType(DateType.TYPE_ALL);    //设置消息体的显示格式,日期格式    dialog.setMessageFormat("yyyy-MM-dd HH:mm");    //设置选择回调    dialog.setOnChangeLisener(null);    //设置点击确定按钮回调    dialog.setOnSureLisener(null);    dialog.show();

源码

pickTime



作者:codbking
链接:http://www.jianshu.com/p/dd44981c038e
來源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。