With Below code we can get date and time import java.text.SimpleDateFormat fun convertLongToTime (time: Long): String { From API level 26 on (Android) or if JVM is your target, we can use Java 8 Date API: val date = Instant val formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm") Below API level 26: val date = Date(1595386325905) val formatter = SimpleDateFormat("yyyy-MM-dd HH:mm")
import java.util.Date
val date = Date(time)
val format = SimpleDateFormat("dd/M/yyyy hh:mm:ss")
return format.format(date)
}
.ofEpochMilli(1164925597950)
.atZone(ZoneId.systemDefault()) // change time zone if necessary
.toLocalDateTime()
println(formatter.format(date))
println(formatter.format(date))
How to Generate signed apk with android studio
Set Activity to Fullscreen Mode in Android - RRutors
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
How to check Android version?
What is Android?
What is Application?
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
How to Use Deprecated Handler() in Android - RRutors Guide
How to find Android Device UDID or unique ID?
How to reduce APK package size?
Explain Fragment Life Cycle
How to copy database from assets folder in android using kotlin
Hide/Disable soft keyboard on Activity launch: Android
Android Studio project R can't find
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
How To Set Text Color Programmatically Android TextView?
How do I check in SQLite whether a table exists?
Key Points to remember while develop the Android Application.
Fix Play Store Rejection Due to SMS Permission - RRutors
How to install/ uninstall apk by command line ADB
How to Get bitmap from drawable: Android
Fix Android Emulator Kill Error When Running Your App
Invoke-customs are only supported starting with android 0 --min-api 26
How to get an image resource by it's name in android?
ERR_ACCESS_DENIED in Android Webview with sdk 30
Fix Duplicate Files in APK Build.gradle Issue - RRutors
What is Android Fragments?
Extract Date and Time from Long Type Variable - RRutors
What is the difference between match_parent and fill_parent?
How do I generate random numbers in Dart?
How to convert milli seconds to hours, minutes and seconds in Android?
Add Jar/Library Files as Dependency in Android Studio
What is NetworkOnMainThread Exception?
How to get screen size (width,height) in Android?
How can i comment inside xml file in android studio?
Permission denied for window type 2010 in Marshmallow device
How to avoid multiple button click at same time in android?
Decompile APK Files: How to Get Source Code - RRutors Guide
How to save activity State in Android?
Open PDF in Google Drive with Intent in Android - RRutors