gpt4 book ai didi

Android实现GPS定位代码实例

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章Android实现GPS定位代码实例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
< 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是位置管理服务类型 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
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定位代码实例的文章就讲到这里了,如果你想了解更多关于Android实现GPS定位代码实例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com