Code Monkey home page Code Monkey logo

picktime's Introduction

PickTime

日期选择控件

apk下载

截图


TYPE_ALL TYPE_YMDHM TYPE_YMDH TYPE_YMD TYPE_HM
Alt text Alt text Alt text Alt text Alt text

效果


Alt text

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's People

Contributors

codbking avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.