The library provides a custom TextView
and Helper
for Android to convert timestamp
to time String
.
The library also provides a singleton
thread that automatically updates the TextView
.
Zaman
also provides a helper that returns the relative time according to the timestamp
sent.
Zaman
means Time
in Arabic
and we named it that since our library works with time and the developers first language is Arabic
.
Download via Gradle:
compile 'morxander.zaman:Zaman:1.0.0'
<morxander.zaman.ZamanTextView
android:id="@+id/ztv"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
In activity class:
ZamanTextView ztv = (ZamanTextView) findViewById(R.id.ztv);
ztv.setTimeStamp(1481554570);
ZamanUtil zamanUtil = new ZamanUtil(1481554570);
zamanUtil.getTime(); // Returns the time string
GNU GENERAL PUBLIC LICENSE 3