Android实现GPS定位代码实例

作者:junjie 时间:2022-07-14 17:26:21 

通过GPS取得的是一个Location类型的经纬度, 可以转换为两个Double 纬度和经度.
纬度: 23.223871812820435
纬度: 113.58986039161628
首先创建一个TextView和两个Button


<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
 android:layout_height="wrap_content"  />

<Button
 android:id="@+id/btnStart"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="定位" />
<Button
 android:id="@+id/btnStop"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="停止" />


然后添加主Activity的代码
Location 是存放经纬度的一个类型
LocationManager是位置管理服务类型


private Button btnStart;
private Button btnStop;
private TextView textView;
private Location mLocation;
private LocationManager mLocationManager;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{

super.onCreate(savedInstanceState);
setContentView(R.layout.main);

btnStart = (Button)findViewById(R.id.btnStart);
btnStop = (Button)findViewById(R.id.btnStop);
textView = (TextView)findViewById(R.id.text);
btnStart.setOnClickListener(btnClickListener); //开始定位
btnStop.setOnClickListener(btnClickListener); //结束定位按钮
}
gpsIsOpen是自己写的查看当前GPS是否开启
getLocation 是自己写的一个获取定位信息的方法
mLocationManager.removeUpdates()是停止当前的GPS位置监听
public Button.OnClickListener btnClickListener = new Button.OnClickListener()
{
public void onClick(View v)
{
 Button btn = (Button)v;
 if(btn.getId() == R.id.btnStart)
 {
  if(!gpsIsOpen())
   return;

mLocation = getLocation();

if(mLocation != null)
   textView.setText("维度:" + mLocation.getLatitude() + "\n经度:" + mLocation.getLongitude());
  else
   textView.setText("获取不到数据");
 }
 else if(btn.getId() == R.id.btnStop)
 {
  mLocationManager.removeUpdates(locationListener);
 }

}
};
private boolean gpsIsOpen()
{
boolean bRet = true;

LocationManager alm = (LocationManager)this.getSystemService(Context.LOCATION_SERVICE);
if(!alm.isProviderEnabled(LocationManager.GPS_PROVIDER))
{
 Toast.makeText(this, "未开启GPS", Toast.LENGTH_SHORT).show();
 bRet = false;
}
else
{
 Toast.makeText(this, "GPS已开启", Toast.LENGTH_SHORT).show();
}

return bRet;
}
判断当前是否开启GPS
private boolean gpsIsOpen()
{
boolean bRet = true;

LocationManager alm = (LocationManager)this.getSystemService(Context.LOCATION_SERVICE);
if(!alm.isProviderEnabled(LocationManager.GPS_PROVIDER))
{
 Toast.makeText(this, "未开启GPS", Toast.LENGTH_SHORT).show();
 bRet = false;
}
else
{
 Toast.makeText(this, "GPS已开启", Toast.LENGTH_SHORT).show();
}

return bRet;
}
该方法获取当前的经纬度, 第一次获取总是null
后面从LocationListener获取已改变的位置
mLocationManager.requestLocationUpdates()是开启一个LocationListener等待位置变化
private Location getLocation()
{
//获取位置管理服务
mLocationManager = (LocationManager)this.getSystemService(Context.LOCATION_SERVICE);

//查找服务信息
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE); //定位精度: 最高
criteria.setAltitudeRequired(false); //海拔信息:不需要
criteria.setBearingRequired(false); //方位信息: 不需要
criteria.setCostAllowed(true);  //是否允许付费
criteria.setPowerRequirement(Criteria.POWER_LOW); //耗电量: 低功耗

String provider = mLocationManager.getBestProvider(criteria, true); //获取GPS信息

Location location = mLocationManager.getLastKnownLocation(provider);

mLocationManager.requestLocationUpdates(provider, 2000, 5, locationListener);

return location;
}
改方法是等待GPS位置改变后得到新的经纬度
private final LocationListener locationListener = new LocationListener()
{
public void onLocationChanged(Location location)
{
 // TODO Auto-generated method stub
 if(location != null)
  textView.setText("维度:" + location.getLatitude() + "\n经度:"
     + location.getLongitude());
 else
  textView.setText("获取不到数据" + Integer.toString(nCount));
}

public void onProviderDisabled(String provider)
{
 // TODO Auto-generated method stub
}

public void onProviderEnabled(String provider)
{
 // TODO Auto-generated method stub
}

public void onStatusChanged(String provider, int status, Bundle extras)
{
 // TODO Auto-generated method stub

}
};

标签:Android,GPS
0
投稿

猜你喜欢

  • java写卷积神经网络(CupCnn简介)

    2022-12-11 09:33:09
  • Java跨域问题的处理详解

    2021-07-05 12:55:18
  • java web服务器实现跨域访问

    2023-09-17 06:55:08
  • java.lang.StackOverflowError出现的原因及解决

    2022-03-21 08:12:21
  • Java锁的升级策略 偏向锁 轻量级锁 重量级锁

    2022-11-07 00:50:17
  • spring mvc实现登录账号单浏览器登录

    2022-06-28 22:29:47
  • springboot-dubbo cannot be cast to问题及解决

    2022-06-27 14:46:51
  • SpringBoot之自定义Filter获取请求参数与响应结果案例详解

    2023-07-16 20:22:21
  • 算法练习之从String.indexOf的模拟实现开始

    2023-02-23 09:20:40
  • Java数据结构及算法实例:冒泡排序 Bubble Sort

    2022-10-17 08:39:45
  • java8新特性将List中按指定属性排序过滤重复数据的方法

    2023-06-16 17:57:42
  • Spring中ApplicationContextAware的使用方法详解

    2023-12-25 07:01:33
  • C++深入探究引用的使用

    2023-04-28 18:02:03
  • SpringBoot后端接口的实现(看这一篇就够了)

    2021-11-05 04:07:41
  • C#操作DataGridView设置单元格只读

    2023-12-22 15:05:26
  • JAVA实现LRU算法的参考示例

    2022-01-26 21:56:49
  • C#微信公众号开发之接收事件推送与消息排重的方法

    2022-01-31 08:44:46
  • windows下java环境变量的设置方法

    2022-12-01 03:13:14
  • 如何用Stream解决两层List属性求和问题

    2022-07-31 20:32:35
  • springboot基于Redis发布订阅集群下WebSocket的解决方案

    2023-07-14 04:37:45
  • asp之家 软件编程 m.aspxhome.com