gpt4 book ai didi

java - 与 FusedLocationApi.requestLocationUpdates() 相关的奇怪行为

转载 作者:行者123 更新时间:2023-12-01 09:32:04 24 4
gpt4 key购买 nike

我正在编写一个 Android 应用程序,并且有一个与 FusedLocationApi.requestLocationUpdates() 相关的奇怪行为,我对此进行了搜索,并且其他相关问题都没有解决我的问题。

显然 requestLocationUpdates 并不会一直触发 onLocationChanged() 方法;我这么说是因为我每次运行都会在模拟器上清理应用程序的数据,有时会触发 onLocationChanged() ,有时不会(大多数情况下在某些情况下,例如第二次运行应用程序而无需清理应用程序的数据)或者在删除用户数据之后,即)

下面你可以找到我的代码(来自pastebin的链接,我不想在这里创建任何视觉过载)

主要 Activity :http://pastebin.com/XiRrcR11

MapHandler:http://pastebin.com/HELnhaxy

另一个问题是,奇怪的是,如果我在方法 displayLocation() 中的 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 没有返回非空对象并且没有触发 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){

}
}

关于java - 与 FusedLocationApi.requestLocationUpdates() 相关的奇怪行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39323235/

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