DateTimeTemplate


Source link: https://github.com/MarcinOrlowski/datetimetemplate

DateTimeTemplate

DateTimeTemplate is date/time formatting library supporting formatting placeholders.

Download demo application APK from releases section. Source code in project's app/ module.

Features

  • Easy to use,
  • Stable and production ready,
  • Localization support,
  • Lightweight,
  • No extra dependencies.

Installation

Edit your master gradle.build file and add maven { url 'https://jitpack.io' } to your current repositories block content (if you use other jitpack hosted libraries, then this step can be skipped):

allprojects {

repositories {

  maven {
 url 'https://jitpack.io' 
}

  
}
 
}
 

Next, edit your module's build.gradle and the following dependency:

compile 'com.github.MarcinOrlowski:datetimetemplate:<VERSION>' 

For recent value of <VERSION> consult library releases or jitpack badge:

Placeholders

Your formatting string can contain anything you like, however certain sequences are considered placeholders, and will be replaced by corresponding values. Non-placeholders are returned unprocessed

Placeholder Description
%Y% long year (i.e. "2010")
%y% short year (i.e. "10")
%MMM% long month name (i.e. "January")
%MM% abbreviated month name (i.e. "Jan")
%M% first letter of month name (i.e. "J")
%mm% zero prefixed 2 digit month number ("02" for Feb, "12" for Dec)
%m% month number as is ("2" for Feb, "12" for Dec)
%DDD% full day name (i.e. ""Saturday", "Sunday", "Monday")
%DD% abbreviated day name ("Sat", "Sun", "Mon")
%D% one letter day name ("S", "S", "M")
%dd% zero prefixed 2 digit day number ("01", "27")
%d% day number as is ("1", "27")
%dy% day number of the year (i.e. "250")
%dw% day number in week (i.e. "1" for Monday if weeks start on Mondays!)
%wm% week number of current month ("3" for 3rd week)
%wy% week number of the year ("3" for 3rd week, 47 for 47th)
%hh% current hour, zero prefixed, 24hrs clock (i.e. "01", "16")
%h% current hour, 24hrs clock (i.e. "1", "16")
%kk% current hour, zero prefixed, 12hrs clock (i.e. "01", "11")
%k% current hour, 12hrs clock (i.e. "1", "11")
%ii% current minute, zero prefixed (i.e. "01", "35")
%i% current minute, zero prefixed (i.e. "1", "35")
%AA% uppercased AM/PM marker (i.e. "AM")
%A% uppercased abbreviated AM/PM marker. "A" for "AM", "P" for "PM"
%aa% lowercased am/pm marker (i.e. "am")
%a% lowercased abbreviated AM/PM marker. "a" for "am", "p" for "pm"

Examples

Format current date, time as it is in GMT zone, using 24hrs clock format:

TimeZone tz = TimeZone.getTimeZone("GMT");
 Calendar c = new GregorianCalendar(tz);
 c.setTime(new Date());
  String formatted = DateTimeTemplate.format(c, "GMT: %DD% %hh%:%ii%");
 

would produce GMT: Mon 16:25.

Format current time as it is in Pacific Daylight Time zone ( PDT is 7 hours behind GMT), using 12hrs clock format with abbreviated AM/PM marker:

TimeZone tz = TimeZone.getTimeZone("GMT-0700");
 Calendar c = new GregorianCalendar(tz);
 c.setTime(new Date());
  String formatted = DateTimeTemplate.format(c, "Time: %k%:%ii%%a%");
 

would produce Time: 3:25a.

Format current time using device's time zone:

TimeZone tz = TimeZone.getDefault();
 Calendar c = new GregorianCalendar(tz);
 c.setTime(new Date());
  String formatted = DateTimeTemplate.format(c, ...);
 

Formatting using locale of your choice:

String formatted = DateTimeTemplate.format(cal, "Time: %k%:%ii%%a%", Locale.SIMPLIFIED_CHINESE);
 

Project support

DateTimeTemplate is free software and you can use it fully free of charge in any of your projects, open source or commercial, however if you feel it prevent you from reinventing the wheel, helped having your projects done or simply saved you time and money then then feel free to donate to the project by sending some BTC to 1LbfbmZ1KfSNNTGAEHtP63h7FPDEPTa3Yo.

Contributing

Please report any issue spotted using GitHub's project tracker.

If you'd like to contribute to the this project, please open new ticket before doing any work. This will help us save your time in case I'd not be able to accept such changes. But if all is good and clear then follow common routine:

  • fork the project
  • create new branch
  • do your changes
  • send pull request

License

  • Written and copyrighted ©2013-2017 by Marcin Orlowski <mail (#) marcinorlowski (.) com>
  • DateTimeTemplate is open-sourced software licensed under the MIT license

Resources

The idea of the project is to make construction of simple RecyclerViews as easy as writing one line of code and supplying a data structure. Why spend time implementing multiple classes if you only need a simple RecyclerView? Currently RecyclerViews containing TextViews and ImageViews are supported with default or custom row layouts.

wATL is a library for android applications with support for formatted text justification, hyphenation and pagination.

Provides a simple way to set custom font in Android application.

DaVinci is an image downloading and caching library for Android Wear.

jimu Mirror provides live, on-device previews of Android layouts. It also allows you to create realistic prototypes of Android native UI without Java code.

This library provides a BaseBluetoothActivity that you inherit from to easily take care of:

  • Enabling bluetooth
  • Scanning for new devices.
  • Connecting to a device.
  • Receiving data from the device.
  • Sending data to the device.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes