启用GPS提供程序但getLastKnownLocation(提供程序)返回null
我正在尝试为我的应用使用GPS提供程序。
该应用程序使用GPS位置提供程序查找设备的当前位置。
该应用程序工作得很好。 但是,尽管我的GPS_Provider已启用,但geLastKnownLocation()
返回null。
MainActivity.java
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
LocationManager locationManager;
String context = Context.LOCATION_SERVICE;
locationManager = (LocationManager)getSystemService(context);
String provider = LocationManager.GPS_PROVIDER;
Location location = locationManager.getLastKnownLocation(provider);
Log.v("BEFORE", "Location is: " + location);
updateWithNewLocation(location);
Log.v("AFTER", "LOCATION FOUND");
}
private void updateWithNewLocation(Location location){
String latLongString;
TextView myLocationText;
myLocationText = (TextView)findViewById(R.id.myLocationText);
if (location != null) {
double lat = location.getLatitude();
double lng = location.getLongitude();
latLongString = "Lat:" + lat + "nLong:" + lng;
}
else {
latLongString = "No location found";
}
myLocationText.setText("Your Current Position is:n" + latLongString);
}
}
的Manifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.paad.whereami"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission
android:name="android.permission.ACCESS_FINE_LOCATION"
/>
</manifest>
根据文档,如果设备不知道最后一个已知位置,则返回null。 GPS可能找不到你。 无论如何,这大概需要一分钟。 所以尽量远离晴空,远离高楼,等到GPS能找到你。 可能这有助于。 并且不要忘记权限。 如果您尝试使用GPS_PROVIDER
,则不需要互联网访问,也不需要网络状态。
编辑:
要让GPS在仿真器上工作,请参阅此链接。
对于谁仍然试图理解愚蠢的函数“getLastKnownLocation”。
此功能仅在其他应用程序正在使用GPS时返回某些内容。 因此,除非您经常将GPS用于其他应用程序,否则它将在90%的时间内返回空值。 我一直在模拟器和我自己的Android手机上进行测试。 我开始获取结果,同时使用模拟位置应用程序每隔5秒更改一次坐标,但只要我停止模拟位置应用程序,我就开始得到空结果。
链接地址: http://www.djcxy.com/p/90641.html上一篇: GPS provider enabled but getLastKnownLocation(provider) returns null