TextMessageDetailActivity 문자열 리소스화

This commit is contained in:
2025-12-01 18:11:41 +09:00
parent 7e4202db1b
commit 2e528f8c7d
7 changed files with 72 additions and 23 deletions

View File

@@ -12,8 +12,8 @@ import java.util.TimeZone
fun String.convertDateFormat(
from: String,
to: String,
inputLocale: Locale = Locale.KOREAN,
outputLocale: Locale = Locale.KOREAN
inputLocale: Locale = Locale.getDefault(),
outputLocale: Locale = Locale.getDefault()
): String {
val fromDateFormat = SimpleDateFormat(from, inputLocale)
val toDateFormat = SimpleDateFormat(to, outputLocale)