Answers for "get current time of day kotlin"

1

get current time in kotlin

// declaration
var c : Calendar = Calendar.getInstance()
private var df : SimpleDateFormat? = null
private var formattedDate = ""

// goes to main method or onCreate(Android) 
df = SimpleDateFormat("dd-MM-yyyy HH:mm a")
formattedDate = df!!.format(c.time)
println("Format dateTime => $formattedDate")
Posted by: Guest on March-26-2022
1

get the time remaning for a date kotlin

val diff: Long = date1.getTime() - date2.getTime()
val seconds = diff / 1000
val minutes = seconds / 60
val hours = minutes / 60
val days = hours / 24
Posted by: Guest on September-26-2020

Browse Popular Code Answers by Language