如何使用 Android kotlin 内部常量格式化 GPS 位置数据

How to use Android kotlin internal constants for formatting GPS location data

我正在学习如何在 Android kotlin 中使用位置管理器来访问 GPS 数据。我目前有一个简单的工作 android 应用程序来显示当前的 GPS 位置和时间,但数据格式并不理想。例如。从 1970 年 1 月 1 日起,GPS 时间以毫秒为单位显示!我想按照“DD/MM/YYYY HH:MM:SS”的格式以更加用户友好的格式显示 GPS 位置读数的时间。我显然可以编写自己的转换例程,但我看到有许多 android 内部常量可用于格式化 GPS 传感器的输出。

例如 GPS 位置:- FORMAT_SECONDS 给出“DDD:MM:SS.SSSSS”,其中 D 表示度数,M 表示弧分,S 表示弧秒。

如何使用这些内部常量来格式化 GPS 时间/GPS 位置?

这是我的 MainActivity.kt 的片段:-

val gps0: Long = location.time
val gps1: Double = location.latitude
val gps2: Double = location.longitude
val gps3: Float = location.accuracy

val textView0 = findViewById<TextView>(R.id.timePosn)
textView0.text = "$gps0 ms."

val textView1 = findViewById<TextView>(R.id.latitudePosn)
textView1.text = "$gps1 deg."

val textView2 = findViewById<TextView>(R.id.longitudePosn)
textView2.text = "$gps2 deg."

val textView3 = findViewById<TextView>(R.id.accuracyPosn)
textView3.text = "${gps3.toInt()} m."

我欢迎任何有用的建议。谢谢

您需要 SimpleDateFormatter 以您想要的方式格式化日期

例如,您可以执行以下操作:

val formattedDate = formatDate(location.time);

private fun formatDate(timestampInMillis: Long): String? {
    val sdf = SimpleDateFormat("MM/dd/yyyy")
    return sdf.format(Date(timestampInMillis))
}

如果要格式化GPS数据,可以使用Location.convert()