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))
Fix Play Store Rejection Due to SMS Permission - RRutors
How to install/ uninstall apk by command line ADB
What happens next when the device switches between portrait and landscape?
What is Android Fragments?
How do i load image from drawable folder in Jetpack Compose?
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
ERR_ACCESS_DENIED in Android Webview with sdk 30
Android Studio project R can't find
What are Android Versions available?
FCM Not Receiving Notifications in Android - RRutors
How to save activity State in Android?
How to start a new activity on button click
What is ANR? How to avoid and resolve it?
How to copy database from assets folder in android using kotlin
Invoke-customs are only supported starting with android 0 --min-api 26
What is Context?
How to find Android Device UDID or unique ID?
How to Use Deprecated Handler() in Android - RRutors Guide
How to validate email address in Android with Kotlin?
Permission denied for window type 2010 in Marshmallow device
Open PDF in Google Drive with Intent in Android - RRutors
What is Intent? What is the difference between an implicit intent and an explicit intent?
How do I generate random numbers in Dart?
What is the difference between match_parent and fill_parent?
How to Generate signed apk with android studio
Add Jar/Library Files as Dependency in Android Studio
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
Fix Android Emulator Kill Error When Running Your App
How to get an image resource by it's name in android?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
Fix Duplicate Files in APK Build.gradle Issue - RRutors
What are the notifications available in android?
How to Exit android app on back pressed?
Key Points to remember while develop the Android Application.
What is ANR in android?
What is the Different Between val and var in Kotlin?
Symmetric vs Asymmetric Encryption in Android Server - RRutors
What is Android?
What is NetworkOnMainThread Exception?