mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-04-03 04:41:10 +02:00
35 lines
1.1 KiB
Kotlin
35 lines
1.1 KiB
Kotlin
package com.simplemobiletools.contacts.extensions
|
|
|
|
import android.widget.TextView
|
|
import com.simplemobiletools.commons.helpers.getDateFormats
|
|
import org.joda.time.DateTime
|
|
import org.joda.time.format.DateTimeFormat
|
|
import java.text.DateFormat
|
|
import java.text.SimpleDateFormat
|
|
import java.util.*
|
|
|
|
fun String.getDateTimeFromDateString(viewToUpdate: TextView? = null): DateTime {
|
|
val dateFormats = getDateFormats()
|
|
var date = DateTime()
|
|
for (format in dateFormats) {
|
|
try {
|
|
date = DateTime.parse(this, DateTimeFormat.forPattern(format))
|
|
|
|
val formatter = DateFormat.getDateInstance(DateFormat.MEDIUM, Locale.getDefault())
|
|
var localPattern = (formatter as SimpleDateFormat).toLocalizedPattern()
|
|
|
|
val hasYear = format.contains("y")
|
|
if (!hasYear) {
|
|
localPattern = localPattern.replace("y", "").trim()
|
|
date = date.withYear(DateTime().year)
|
|
}
|
|
|
|
val formattedString = date.toString(localPattern)
|
|
viewToUpdate?.text = formattedString
|
|
break
|
|
} catch (ignored: Exception) {
|
|
}
|
|
}
|
|
return date
|
|
}
|