我正在编写一个Android应用程序,并且在SO上搜索了与FusedLocationApi.requestLocationUpdates()相关的奇怪行为,其他相关问题都没有解决我的问题。
显然,requestLocationUpdates不会一直触发onLocationChanged()方法。我之所以这样说是因为我每次运行都会在模拟器上清理我的应用程序数据,有时会触发onLocationChanged(),有时不会触发(大多数情况下,例如第二次运行该应用程序而没有清理该应用程序的数据或在擦除用户数据后,即)
在下面可以找到我的代码(来自pastebin的链接,我不想在此处创建任何视觉重载)
主要活动:http://pastebin.com/XiRrcR11
MapHandler:http://pastebin.com/HELnhaxy
奇怪的是,另一个问题是,如果我在displayHandler()方法的MapHandler中使用匿名内部类,则该应用程序可以运行,但是如果我使用扩展LocationListener的外部类,则该应用程序将无法正常运行
我知道SO中的预期问题水平很高,但是我正在开始有关Android开发的研究,这个问题使我无法入睡
顺便说一句,这是我的AndroidManifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.trackit.app.track_it_v002">
<!--
The ACCESS_COARSE/FINE_LOCATION permissions are not required to use
Google Maps Android API v2, but you must specify either coarse or fine
location permissions for the 'MyLocation' functionality.
-->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<!--
The API key for Google Maps-based APIs is defined as a string resource.
(See the file "res/values/google_maps_api.xml").
Note that the API key is linked to the encryption key used to sign the APK.
You need a different API key for each encryption key, including the release key that is used to
sign the APK for publishing.
You can define the keys for the debug and release targets in src/debug/ and src/release/.
-->
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/google_maps_key" />
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name=".MapsActivity"
android:label="@string/title_activity_maps">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
你们能帮我一下吗?
编辑:经过一些调试后,我看到requestLocationUpdates没有返回非null对象并且没有触发onLocationChanged(),有人知道为什么吗? = S
最佳答案
我遇到了这个问题。 mGoogleApiClient对象,在requestLocationUpdates时需要连接该对象。通过从onConnected回调中请求LocationUpdates可以解决此问题。
/*
* Called first time google client is connected
*/
@Override
public void onConnected(@Nullable Bundle bundle) {
Log.v(LOG_TAG,"DetectDrivingService - onConnected");
// Create
try {
LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient, mLocationRequest, this);
}
catch(SecurityException se){
}
}