如何解决如何使用 Android kotlin 内部常量格式化 GPS 位置数据
我正在学习如何在 Android kotlin 中使用位置管理器来访问 GPS 数据。我目前有一个简单的 android 应用程序来显示当前的 GPS 位置和时间,但数据的格式并不理想。例如。 GPS 时间从 1970 年 1 月 1 日起以毫秒为单位显示!我想沿着“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()
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。