android:GPS获取location经纬度并用谷歌解析为地理位置名称

这篇博客介绍了如何在Android应用中获取GPS位置的经纬度,并使用谷歌地图API将这些坐标转换为地理位置名称。通过在布局中设置一个TextView和Button,用户点击Button后,TextView会显示解析出的地理位置信息。为了实现这一功能,需要在MainActivity中处理位置获取和解析,并且必须申请相应的权限以避免程序报错。
摘要由CSDN通过智能技术生成

实现的功能:先获取本地的经纬度,再根据经纬度,请求googleapis来解析地理位置名称。


下面的例子,能够跑起来,亲测。


多说无益,看码。


首先搞一个布局,其实就是一个textView,一个button,点击button后,在textview展示地理位置信息。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/tv_location_show"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />
    
       <Button
        android:id="@+id/btn_show_location"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="获取当前位置" >
    </Button>

</RelativeLayout>


为了方便,我直接把获取地理位置、经纬度解析,都放到MainActivity里面了。(其实就是懒,这样不好,还是该做什么的类去做什么,应该分开放的)


package com.example.getlocation;

import java.util.List;

im
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值