Android中獲取定位經緯度信息

来源:https://www.cnblogs.com/badaoliumangqizhi/archive/2020/03/18/12520779.html
-Advertisement-
Play Games

場景 根據GPS獲取經緯度效果 註: 博客: https://blog.csdn.net/badao_liumang_qizhi 關註公眾號 霸道的程式猿 獲取編程相關電子書、教程推送與免費下載。 實現 修改頁面佈局代碼activity_main.xml,在頁面上添加一個TextView來顯示經緯度 ...


場景

根據GPS獲取經緯度效果

 

 

註:

博客:
https://blog.csdn.net/badao_liumang_qizhi
關註公眾號
霸道的程式猿
獲取編程相關電子書、教程推送與免費下載。

實現

修改頁面佈局代碼activity_main.xml,在頁面上添加一個TextView來顯示經緯度信息。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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=".MainActivity">


    <TextView
        android:id="@+id/location"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:textStyle="bold" />
</RelativeLayout>

然後打開MainActivity.java,修改代碼如下

package com.badao.servicetest;

import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.ActivityCompat;

import android.Manifest;
import android.content.pm.PackageManager;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.view.WindowManager;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

    private TextView text;  //定義用於顯示LocationProvider的TextView組件

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                WindowManager.LayoutParams.FLAG_FULLSCREEN);   //設置全屏顯示

        text = (TextView) findViewById(R.id.location);  //獲取顯示Location信息的TextView組件
        //獲取系統的LocationManager對象
        LocationManager locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);

        //添加許可權檢查
        if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
            // TODO: Consider calling
            //    ActivityCompat#requestPermissions
            // here to request the missing permissions, and then overriding
            //   public void onRequestPermissionsResult(int requestCode, String[] permissions,
            //                                          int[] grantResults)
            // to handle the case where the user grants the permission. See the documentation
            // for ActivityCompat#requestPermissions for more details.
            return;
        }
        //設置每一秒獲取一次location信息
        locationManager.requestLocationUpdates(
                LocationManager.GPS_PROVIDER,      //GPS定位提供者
                1000,       //更新數據時間為1秒
                1,      //位置間隔為1米
                //位置監聽器
                new LocationListener() {  //GPS定位信息發生改變時觸發,用於更新位置信息

                    @Override
                    public void onLocationChanged(Location location) {
                        //GPS信息發生改變時,更新位置
                        locationUpdates(location);
                    }

                    @Override
                    //位置狀態發生改變時觸發
                    public void onStatusChanged(String provider, int status, Bundle extras) {
                    }

                    @Override
                    //定位提供者啟動時觸發
                    public void onProviderEnabled(String provider) {
                    }

                    @Override
                    //定位提供者關閉時觸發
                    public void onProviderDisabled(String provider) {
                    }
                });
        //從GPS獲取最新的定位信息
        Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
        locationUpdates(location);    //將最新的定位信息傳遞給創建的locationUpdates()方法中
    }

    public void locationUpdates(Location location) {  //獲取指定的查詢信息
        //如果location不為空時
        if (location != null) {
            StringBuilder stringBuilder = new StringBuilder();        //使用StringBuilder保存數據
            //獲取經度、緯度、等屬性值
            stringBuilder.append("您的位置信息:\n");
            stringBuilder.append("經度:");
            stringBuilder.append(location.getLongitude());
            stringBuilder.append("\n緯度:");
            stringBuilder.append(location.getLatitude());
//            stringBuilder.append("\n精確度:");
//            stringBuilder.append(location.getAccuracy());
//            stringBuilder.append("\n高度:");
//            stringBuilder.append(location.getAltitude());
//            stringBuilder.append("\n方向:");
//            stringBuilder.append(location.getBearing());
//            stringBuilder.append("\n速度:");
//            stringBuilder.append(location.getSpeed());
//            stringBuilder.append("\n時間:");
//            SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH mm ss");    //設置日期時間格式
//            stringBuilder.append(dateFormat.format(new Date(location.getTime())));
            text.setText(stringBuilder);            //顯示獲取的信息
        } else {
            //否則輸出空信息
            text.setText("沒有獲取到GPS信息");
        }
    }
}

 

最後打開AndroidMainfest.xml添加許可權

    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

 

添加位置如下

 

 

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 資料庫大概長這樣 導出,格式選擇 csv for ms excel 導出的csv文件用記事本打開,另存為txt格式,編碼選擇ANSI 把txt文件丟到excel里打開,發現所有內容都在同一列,長這樣 選擇數據-分列 分列成功,完美! ...
  • 一、多表關係 1.一對一(例如:人和身份證) 實現:可以在任意一方添加唯一外鍵指向另一方的主鍵;或者這節加個欄位,整合成一張表 如:在人信息表中添加身份證id欄位這一外鍵,指向身份證信息表的主鍵id;或者在人信息表中添加身份證id欄位 2.一對多、多對一(例如:員工和部門) 實現:在多的一方建立外鍵 ...
  • 字元串的新增方法 本章介紹字元串對象的新增方法。 String.fromCodePoint() ES5 提供 方法,用於從 Unicode 碼點返回對應字元,但是這個方法不能識別碼點大於 的字元。 上面代碼中, 不能識別大於 的碼點,所以 就發生了溢出,最高位 被捨棄了,最後返回碼點 對應的字元,而 ...
  • mongoose 中可使用 $push 向子文檔數組末尾添加數據,但如果想在數組頭部添加數據,好像沒有$unshift 方法。但可以利用$each、$postition把數據插入到指定的數組位置。 下麵的代碼片段是把 comment 插入到 comments 的頭部,而不是預設的末尾,即指定 pos ...
  • Flink設置並行度的幾種方式 代碼中設置setParallelism() 全局設置: env.setParallelism(3); 運算元設置(部分設置): sum(1).setParallelism(3) 客戶端CLI設置: ./bin/flink run -p 3 修改配置文件設置/conf/f ...
  • 表是資料庫存儲數據的基本單位,由若幹個欄位組成,主要用來存儲數據記錄。 對錶的操縱有創建表、查看表、修改表、刪除表、向表中插入數據、修改表中的數據 1、創建表 CREATE TABLE table_name (column_name column_type 約束條件)[存儲引擎 字元集]; 或者:C ...
  • 首先去MySQL官網下載壓縮包 MySQL 官方網站地址:MySQL http://www.mysql.com/ 依次找到 Downloads -> Community -> MySQL Community Downloads -> MySQL Community Server 。 根據開發者系統的 ...
  • 一.實現的效果圖以及工程目錄結構: 二.部分代碼展示: 1.主要代碼: 1 package com.example.mywechat; 2 import android.app.Fragment; 3 import android.annotation.SuppressLint; 4 import ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...