Skip to content

liuxiaoqiang/timeago

 
 

Repository files navigation

TimeAgo

Simple java library for displaying dates as relative time ago language.

Examples:

  • 4 days ago
  • 15 years ago
  • a minute ago
  • just now

Usage:

Import as a dependency:

Gradle:

compile 'com.github.marlonlom:timeago:2.0.0'

Maven:

<dependency>
  <groupId>com.github.marlonlom</groupId>
  <artifactId>timeago</artifactId>
  <version>2.0.0</version>
</dependency>

Default usage:

/** using java.util.Date*/
TimeAgo.from(new java.util.Date().getTime());
/** using java.util.Calendar*/
TimeAgo.from(java.util.Calendar.getInstance().getTime().getTime());

With Specific Locale (by language tag):

Languages supported: Spanish (es), English (en), German (de), French (fr), Italian (it), Portuguese (pt).

Locale LocaleBylanguageTag = Locale.forLanguageTag("es"); 
TimeAgoMessages messages = new TimeAgoMessages.Builder().withLocale(LocaleBylanguageTag).build();
TimeAgo.from(new java.util.Date().getTime(), messages);

Demo

Check the Demo here.

##Spread the word

If you like this library, please tell others about it 👍👍

###License

Copyright 2016 marlonlom

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

Simple java library for displaying dates as relative time ago language.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%