gpt4 book ai didi

android - LeakCanary 通过 locationlistener 的匿名实现报告泄漏的 Activity 实例

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:44:31 24 4
gpt4 key购买 nike

在onDestroy中

locationManager.removeUpdates(locationListener);
locationListener = null;

匿名实现

locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE);
if (locationManager != null) {
locationListener = new LocationListener() {
@Override
public void onLocationChanged(Location location) {
if (chatId != null) {
double radius = 6378.137;
double oldLat = mLastLocation.getLatitude();
double oldLng = mLastLocation.getLongitude();
double newLat = location.getLatitude();
double newLng = location.getLongitude();
double dLat = Math.toRadians(newLat - oldLat);
double dLng = Math.toRadians(newLng - oldLng);
double a = Math.sin(dLat / 2) * Math.sin(dLat / 2)
+ Math.cos(Math.toRadians(oldLat))
* Math.cos(Math.toRadians(newLat)) * Math.sin(dLng / 2)
* Math.sin(dLng / 2);
double c = 2 * Math.asin(Math.sqrt(a));
double valueResult = radius * c;
double difInMeters = valueResult * 1000;

if (difInMeters > 2.0) {

pushLocation(location);

}
}
}

@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
Log.d(TAG, "onStatusChanged: " + status);
switch (status) {
case LocationProvider.AVAILABLE:
Log.d(TAG, "GPS.Available");
break;
case LocationProvider.OUT_OF_SERVICE:
Log.d(TAG, "GPS.OutOfService");
break;
case LocationProvider.TEMPORARILY_UNAVAILABLE:
Log.d(TAG, "GPS.TemporarilyUnavailable");
break;
}
}

@Override
public void onProviderEnabled(String provider) {
Log.d(TAG, "onProviderEnabled: " + provider.toString());
}

@Override
public void onProviderDisabled(String provider) {
Log.d(TAG, "onProviderdisabled: " + provider.toString());
}
};

LocationManager 和 LocationListener 是从

导入的
import android.location.LocationListener;
import android.location.LocationManager;

我让 Activity 保留后退按钮,所以我尝试覆盖 onBackPressed,并从 onBackPressed 中的 locationManager 中删除更新,但我遇到了同样的泄漏。

以下是泄露的Logcat

D/LeakCanary: In findmyfriends:1.0:1.
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: * findmyfriends.ScrollingMessengerActivity has leaked:
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: * GC ROOT android.location.LocationManager$ListenerTransport.mListener
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: * references findmyfriends.ScrollingMessengerActivity$6.this$0 (anonymous implementation of android.location.LocationListener)
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: * leaks findmyfriends.ScrollingMessengerActivity instance
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: * Retaining: 0.89 MB.
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: * Reference Key: bead30b1-667e-45b1-8ccd-86a97abbfe43
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: * Device: samsung samsung SAMSUNG-SM-G891A poseidonlteuc
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: * Android Version: 6.0.1 API: 23 LeakCanary: 1.4 6b04880
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: * Durations: watch=5025ms, gc=173ms, heap dump=2093ms, analysis=34462ms
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: * Details:
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: * Instance of android.location.LocationManager$ListenerTransport
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: | static TYPE_STATUS_CHANGED = 2
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: | static TYPE_PROVIDER_DISABLED = 4
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: | static TYPE_PROVIDER_ENABLED = 3
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: | static TYPE_LOCATION_CHANGED = 1
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: | static $staticOverhead = byte[32]@331418625 (0x13c10c01)
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: | mListener = ScrollingMessengerActivity$6@324639008 (0x13599920)
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: | mListenerHandler = android.location.LocationManager$ListenerTransport$1@322816704 (0x133dcac0)
09-26 18:28:13.367 25892-26857/findmyfriends D/LeakCanary: | this$0 = android.location.LocationManager@322815648 (0x133dc6a0)

我之前在 onOrientationChange 期间发现了 locationListener 的内存泄漏,

我通过放置解决了

if (childListener != null) {
mChatRef.removeEventListener(childListener);
childListener = null;
}

在 onSaveInstanceState 中。并使用 locationListener 的匿名实现运行初始化函数。

为什么 locationManager.removeUpdates(locationListener) 不释放对 Activity 的引用?任何建议,将不胜感激!提前致谢!!

编辑好的,仍然没有解决 MemoryLeak,但我删除了匿名类,而是让 Activity 实现 LocationListener。

我仍然遇到同样的内存泄漏问题。

最佳答案

我相信您不需要使用 onDestroy 事件,而是使用 onPause。当 Activity 被销毁时,您不必担心,因为监听器将被杀死并从内存中删除,但是当 Activity 进入后台时将调用 onPause 。

在我的例子中,问题是我没有从 onPause 中删除监听器,因此它继续从 LocationManager 获取结果。

关于android - LeakCanary 通过 locationlistener 的匿名实现报告泄漏的 Activity 实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39713901/

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