Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

arover/moment

Repository files navigation

Moment

Parse, validate, manipulate, and display dates in android. Inspired by momentjs.

Usage

 Moment moment = new Moment() // create a moment with default calendar instance.
 moment.toString() //"2016-08-29T08:02:17+08:00" (ISO 8601)
 // Edit
 // change moment time
 moment.edit().minute(23).hour(14);
 moment.fields().hour(); //=> 14
 moment.fields().minute(); //=> 23
 
 // Query
 moment.query().isBefore(othermoment); // true or false
 moment.query().lastMonday(); // the latest monday before this moment.
 moment.query().firstDayOfMonth(); // the first day of month of this moment.
 moment.query().isLeapYear();// false if current year is not leap year
 // Field
 // get some field
 moment.fields().year(); // => 2016
 moment.fields().month(); // => 7
 moment.fields().day(); // => 29
 // ....
 // Edit
 // manipulate moment,edit will change moment itself.
 moment.edit().setMinute(23);
 moment.edit().setHour(14);
 moment.edit().minus(2, MomentUnit.DAY);
 // Display
 // show moment as string with default format.
 moment.display().format();
 // format as yyyy-MM-dd
 moment.display().format("yyyy-MM-dd");
 // Convert
 // convert to normal java date classes.
 moment.getCalendar();
 moment.getDate();

Import

Add it in your root build.gradle at the end of repositories:

 allprojects {
 repositories {
 
 //...
 maven { url "https://jitpack.io" }
 }
 }

Step 2. Add the dependency

 dependencies {
 compile 'com.github.arover:moment:1.8'
 }

About

Parse, validate, manipulate, display date and time in Android. Inspired by momentjs.

Topics

Resources

License

Stars

Watchers

Forks

Packages

Contributors

Languages

AltStyle によって変換されたページ (->オリジナル) /