12

我正在尝试实现 Chrome 自定义选项卡并通过 LeakCanary 检测内存泄漏。

除非我们添加另一个 Activity 层,否则演示应用程序似乎不会泄漏(即MainActivitylaunch Activity2,它绑定/取消绑定到自定义选项卡服务并启动 url -MainActivity演示应用程序中所做的一切)。

MainActivity 看起来像这样:

public class MainActivity extends Activity implements OnClickListener {
    private Button mLaunchButton;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        LeakCanary.install(getApplication());

        setContentView(R.layout.main);

        mLaunchButton = (Button) findViewById(R.id.launch_button);
        mLaunchButton.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        int viewId = v.getId();

        if (viewId == R.id.launch_button) {
            Intent intent = new Intent(getApplicationContext(), Activity2.class);
            startActivity(intent);
        }
    }
}

Activity2to返回MainActivity将导致此泄漏:

09-04 13:49:26.783  10456-12161/org.chromium.customtabsclient.example D/LeakCanary﹕ In org.chromium.customtabsclient.example:1.0:1.
09-04 13:49:26.783  10456-12161/org.chromium.customtabsclient.example D/LeakCanary﹕ * org.chromium.customtabsclient.Activity2 has leaked:
09-04 13:49:26.783  10456-12161/org.chromium.customtabsclient.example D/LeakCanary﹕ * GC ROOT android.support.customtabs.CustomTabsClient$1.val$callback (anonymous class extends android.support.customtabs.ICustomTabsCallback$Stub)
09-04 13:49:26.783  10456-12161/org.chromium.customtabsclient.example D/LeakCanary﹕ * references org.chromium.customtabsclient.Activity2$2.this$0 (anonymous class extends android.support.customtabs.CustomTabsCallback)
09-04 13:49:26.783  10456-12161/org.chromium.customtabsclient.example D/LeakCanary﹕ * leaks org.chromium.customtabsclient.Activity2 instance

https://gist.github.com/abvanpelt/ddbc732f31550b09fc27

我的问题是:这是演示应用程序中的错误吗?(也许unbindCustomTabsService()缺少一些必要的拆解?)或者这是 Chrome 自定义标签库本身的错误?

谢谢你。

4

2 回答 2

5

找到了这个问题的答案——

如果您按如下方式启动 customTab

private void launchChromeCustomTab(final Context context, final Uri uri) {

     mServiceConnection = new CustomTabsServiceConnection() {
        @Override
        public void onCustomTabsServiceConnected(ComponentName componentName, CustomTabsClient client) {
            client.warmup(0L);
            final CustomTabsIntent intent = new CustomTabsIntent.Builder().build();
            intent.launchUrl(context, uri);
            mIsCustomTabsLaunched = true;
        }

        @Override
        public void onServiceDisconnected(ComponentName name) {
        }
    };
    CustomTabsClient.bindCustomTabsService(context, "com.android.chrome", mServiceConnection);
}

然后你需要解绑这个 mServiceConnection onDestroy 方法 -

@Override
protected void onDestroy() {
    super.onDestroy();
    this.unbindService(mServiceConnection);
    mServiceConnection = null;
}

那将停止投掷

android.app.ServiceConnectionLeaked: Activity <Your_Activity> has leaked ServiceConnection 
于 2017-02-22T00:47:36.900 回答
1

示例中的 MainActivity 将 CustomTabsServiceConnection 和 CustomTabsCallback 的实例创建为匿名内部类。

如果您将它们更改为静态内部类,从而删除对thisMainActivity 的引用,并将对 MainActivity 的引用设置为 WeakReferences,您将看到 LeakCanary 停止报告 MainActivity 泄漏。

现在,如果您将其设置为监视该对象,您可能仍会看到有关 ServiceConnection 泄漏的泄漏金丝雀报告。原因是它与 Chrome 服务链接,无法被 GC 清理,直到 GC 也运行在服务器端。

我创建了一个在循环中绑定和取消绑定服务的测试,并且我已经确认 ServiceConnections 确实在一段时间后被收集。

所以,可以改进Demo,避免ServiceConnection持有对MainActivity的引用,避免服务断开后Activity等重物还存活很长时间,自定义Tabs库也没有问题。

于 2015-09-09T10:33:54.920 回答