Android 中获取LocationProvider的三种方法和获取定位信息

Posted 路宇

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 中获取LocationProvider的三种方法和获取定位信息相关的知识,希望对你有一定的参考价值。

前言:

LocationProvider是位置源的意思,用于提供定位信息。

常用的LocationProvider主要有三种:

  1. GPS:通过手机里面的GPS芯片,来利用卫星定位信息的。
  2. network:通过网络来获取位置信息的,主要利用手机的基站,和WiFi节点的位置来大致定位。
  3. passive:是一种被动定位方式,它自己不能获取定位信息,而是利用被系统保存的其他程序所更新的定位信息。

下面我们通过三种方法获取LocationProvider
一、首先是activity_location_provider.xml布局文件,代码如下

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    android:orientation="vertical"
    tools:context=".LocationProviderActivity">

    <TextView
        android:id="@+id/textView"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:gravity="center"
        android:text="可用的LocationProvider(位置提供者)"
        android:textColor="@color/black"
        android:textSize="20sp" />

    <TextView
        android:id="@+id/text_locationProvider"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:gravity="center"
        android:textSize="20sp" />
</LinearLayout>

二、接着在LocationProviderActivity类中获取LocationProvider,具体讲解已经在代码中给出

public class LocationProviderActivity extends AppCompatActivity 
    private TextView text_locationProvider;
    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_location_provider);
        text_locationProvider = findViewById(R.id.text_locationProvider);
        if (Build.VERSION.SDK_INT>Build.VERSION_CODES.M)
            if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)!= PackageManager.PERMISSION_GRANTED)
                ActivityCompat.requestPermissions(this,new String[]Manifest.permission.ACCESS_FINE_LOCATION,1);
            
        
        LocationManager locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);

        //第一种方式:获取所有的LocationProvider名称,通过LocationManager对象的getAllProviders()来实现
//        List<String> providerNames= locationManager.getAllProviders();
//        StringBuilder stringBuilder = new StringBuilder();
//        Iterator<String> iterator = providerNames.iterator();
//        while (iterator.hasNext())
//            stringBuilder.append(iterator.next()+"\\n");
//        
//        //显示获取的locationProvider名称
//        text_locationProvider.setText(stringBuilder.toString());


        //第二种方法:通过名称获得LocationProvider
        //获取基于PASSIVE的locationProvider
//        LocationProvider locationProvider = locationManager.getProvider(LocationManager.PASSIVE_PROVIDER);
//        //获取LocationProvider名称
//        text_locationProvider.setText(locationProvider.getName());

        //三、通过Criteria类获得LocationProvider
        //获取最佳的LocationProvider
        //创建一个过滤条件对象
        Criteria criteria = new Criteria();
        //使用不收费的
        criteria.setCostAllowed(false);
        //使用精度最准确的
        criteria.setAccuracy(Criteria.ACCURACY_FINE);
        //使用耗电量最低的
        criteria.setPowerRequirement(Criteria.POWER_LOW);
        //获取最佳的LocationProvider名称 第二个参数 表示是可用的
        String provider = locationManager.getBestProvider(criteria,true);
        text_locationProvider.setText(provider);
    

效果如图:


我这是虚拟机运行,所以只有这一种方式,正常真机运行便是三种方式。

下面通过LocationProvider获取定位信息,分别为经度和纬度,通过经度和纬度便可得到所在的位置信息。
首先是布局activity_location.xml,一个文本框显示经度和纬度的这里就不再给出代码

主要看LocationActivity类中实现的代码,具体讲解也已经给出了注释:

public class LocationActivity extends AppCompatActivity 
    private TextView textView;

    @Override
    protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_location);
        textView = findViewById(R.id.textView);
        //获取位置管理器
        LocationManager locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);
        //申请权限
        if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) 
            ActivityCompat.requestPermissions(this, new String[]Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION, 1);
        
        //这个监听器实现每隔1s中更新一次位置信息
        locationManager.requestLocationUpdates(
                LocationManager.GPS_PROVIDER,//指定GPS定位的提供者
                1000,//间隔时间
                1,//位置更新之间的最小距离
                new LocationListener()  //监听GPS定位信息是否改变
                    @Override
                    public void onLocationChanged(@NonNull Location location)  //GPS信息发生改变时回调


                    
                
        );

        //获取最新的定位信息
        Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
        //将最新的定位信息,传递给LocationUpdates()方法
        locationUpdates(location);
    

    public void locationUpdates(Location location) 
        if (null != location) 
            StringBuilder stringBuilder = new StringBuilder();
            stringBuilder.append("您的位置是:\\n");
            stringBuilder.append("经度:");
            stringBuilder.append(location.getLongitude());
            stringBuilder.append("\\n纬度:");
            stringBuilder.append(location.getLatitude());
            textView.setText(stringBuilder.toString());
         else 
            textView.setText("没有获取到GPS信息");
        
    

具体效果如图所示:

以上是关于Android 中获取LocationProvider的三种方法和获取定位信息的主要内容,如果未能解决你的问题,请参考以下文章

如何在Android开发中获取SIM卡信息

android 怎么从camera中获取流

android ViewPager+Fragment 如何在ViewPager的Activity中获取Fragment中的控件对象

获取Android应用签名

Android 获取联系人列表未在 Android 10 中显示

android4.4 中如何获取最近应用的缩略图