IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> Android 原生获取经纬度,无网络解析地址(不引入第三方) -> 正文阅读

[移动开发]Android 原生获取经纬度,无网络解析地址(不引入第三方)

先上效果图

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

测试环境

  • 可用设备系统:鸿蒙2.0、华为Android10+、小米Android10+(其他设备未测试)
  • 开发工具:android studio 2020.3.1 Patch4
  • 开发语言:kotlin

核心代码

逻辑代码

package cn.cb.andbase.activity

import android.annotation.SuppressLint
import android.content.Context
import android.content.Intent
import android.location.Geocoder
import android.location.Location
import android.location.LocationListener
import android.location.LocationManager
import android.net.Uri
import android.os.Bundle
import android.os.Handler
import android.os.Looper
import android.provider.Settings
import android.widget.Button
import android.widget.TextView
import androidx.activity.result.contract.ActivityResultContracts
import androidx.appcompat.app.AlertDialog
import cn.cb.andbase.R
import cn.cb.baselibrary.activity.BaseActivity
import cn.cb.baselibrary.utils.LogHelper
import com.hjq.toast.ToastUtils
import java.util.*

private const val TAG = "LocationActivity"

class LocationActivity : BaseActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_location)
        initBarView()
        LocationHelper.instance.create(this)
        findViewById<Button>(R.id.location_default_get).setOnClickListener {
            LocationHelper.instance.getLocation()
        }

        findViewById<Button>(R.id.location_default_address).setOnClickListener {
            addMsg(getAddress(this, 114.31828880795926, 30.471368343906683))
        }
    }

    override fun onDestroy() {
        super.onDestroy()
        LocationHelper.instance.removeListener()
    }

    var resumeTimes = 0

    override fun onResume() {
        super.onResume()
        resumeTimes++
        if (resumeTimes < 3) launcher.launch(permission)
    }

    private val permission = arrayOf(
        android.Manifest.permission.ACCESS_FINE_LOCATION,
        android.Manifest.permission.ACCESS_COARSE_LOCATION
    )

    private val launcher =
        registerForActivityResult(ActivityResultContracts.RequestMultiplePermissions()) {
            for (v in it.values) if (!v) {
                AlertDialog.Builder(this)
                    .setMessage("权限不足!")
                    .setPositiveButton("去设置") { _, _ ->
                        goSettingActivity(this)
                    }.show()
                return@registerForActivityResult
            }
        }

    private fun goSettingActivity(context: Context) {
        val intent = Intent()
        intent.action = Settings.ACTION_APPLICATION_DETAILS_SETTINGS
        intent.data = Uri.parse("package:" + context.packageName)
        context.startActivity(intent)
    }

    private fun getAddress(context: Context, lnt: Double, lat: Double): String {
        val geocoder = Geocoder(context, Locale.CHINA)
        val flag = Geocoder.isPresent()
        if (!flag) {
            LogHelper.w(TAG, "Geocoder Present is $flag")
            return ""
        }
        val sb = StringBuilder()
        val addresses = geocoder.getFromLocation(lat, lnt, 1)
        if (addresses.isNullOrEmpty()) return ""
        for (address in addresses) {
            LogHelper.w(TAG, "address: $address")
            sb.append(address.countryName)
                .append(address.adminArea)
                .append(address.locality)
                .append(address.subAdminArea)
                .append(address.thoroughfare)
                .append(address.featureName)
        }
        return sb.toString()
    }

    class LocationHelper {
        private val tag = javaClass.simpleName
        private lateinit var locationManager: LocationManager

        companion object {
            val instance = LocationHelper()
        }

        fun create(context: Context) {
            locationManager = context.getSystemService(Context.LOCATION_SERVICE) as LocationManager
        }

        @SuppressLint("MissingPermission")
        fun getLocation() {
            val provides = locationManager.allProviders
            var provideStr = ""
            for (provide in provides) when (provide) {
                LocationManager.NETWORK_PROVIDER -> {
                    provideStr = LocationManager.NETWORK_PROVIDER
                    break
                }
                LocationManager.GPS_PROVIDER -> {
                    provideStr = LocationManager.GPS_PROVIDER
                    break
                }
                else -> provideStr = ""
            }
            if (provideStr.isBlank()) {
                ToastUtils.show("无法获取定位")
                return
            }
            val location = locationManager.getLastKnownLocation(provideStr)
            location?.also { setLocation(it) }
            locationManager.requestLocationUpdates(provideStr, 0L, 0F, listener)
        }

        private val listener = LocationListener {
            LogHelper.w(tag, "accuracy: ${it.accuracy}")
            setLocation(it)
        }

        fun setLocation(location: Location) {
            LogHelper.w(tag, "latitude: " + location.latitude + "\tlongitude:" + location.longitude)
        }

        fun removeListener() {
            locationManager.removeUpdates(listener)
        }
    }

    companion object {
        val handler = Handler(Looper.getMainLooper())
    }

    fun addMsg(msg: String) {
        val logTv = findViewById<TextView>(R.id.print_log)
        val handler = Handler(Looper.getMainLooper()) {
            val sb = StringBuilder().append(it.obj).appendLine().appendLine().append(logTv.text)
            logTv.text = sb.toString()
            return@Handler true
        }
        handler.post {
            handler.obtainMessage(0, 0, 0, msg).let { handler.dispatchMessage(it) }
        }
    }
}

布局代码

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".activity.LocationActivity">

    <include layout="@layout/tool_bar" />

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toBottomOf="@id/tool_bar_view">

        <TextView
            android:id="@+id/print_log"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="end" />

    </ScrollView>

    <Button
        android:id="@+id/location_default_get"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="get location"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toBottomOf="@id/tool_bar_view" />

    <Button
        android:id="@+id/location_default_address"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="get address"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toBottomOf="@id/location_default_get" />

</androidx.constraintlayout.widget.ConstraintLayout>

项目地址

源码地址gitee
文章地址:https://blog.csdn.net/qq471208499/article/details/121910319

赠人玫瑰,手有余香

假如你觉得项目有用,可以收藏点赞哦!!!

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2021-12-14 16:03:59  更:2021-12-14 16:06:56 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 8:37:08-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码