android – 在Chrome自定义标签页中打开来自WebView的链接时获取ANR对话框.我该如何调试?
作者:互联网
我想使用Chrome自定义标签来正确处理域外的网址.
这是代码
webView.setWebViewClient(new WebViewClient() {
public boolean shouldOverrideUrlLoading(WebView view, WebResourceRequest request){
String url = request.getUrl().toString();
if(url.startWith("http://my.domain.name"))
return false;
else{
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
builder.setToolbarColor(getResources().getColor(R.color.colorPrimary));
builder.setStartAnimations(getActivity(), R.anim.slide_in_right, R.anim.slide_out_left);
builder.setExitAnimations(getActivity(), R.anim.slide_in_left, R.anim.slide_out_right);
Intent actionIntent = new Intent(
getApplicationContext(), ActionBroadcastReceiver.class);
actionIntent.setData(Uri.parse(url));
PendingIntent menuItemPendingIntent =
PendingIntent.getBroadcast(getApplicationContext(), 0, actionIntent, 0);
builder.addMenuItem(getString(R.string.action_share), menuItemPendingIntent);
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(getActivity(), Uri.parse(url));
return true;
}
}
});
但是,当我点击域外URL时,我偶尔会收到ANR对话框并且应用程序的UI处于冻结状态.
我尝试调试anr跟踪,但我发现没有可疑的线程.
ANR跟踪文件很长,所以我在这里发布:
https://gist.github.com/hoavt-54/42f1109c0619eed81e82a9a8d1128a6d
如果您对如何调试应用程序或如何理解跟踪文件有任何建议,我将非常感激.
解决方法:
5秒规则无关紧要 – 即使1秒阻止主线程也会向用户显示为卡住的应用程序.
系统在后台和前台为您的应用程序所做的工作量一直很大,而且都是在主线程上完成的.因此,当你没有立即从任何回调(onXyz())返回时 – 整个世界都在阻止等你,没有任何东西会被绘制,没有触摸事件会到来等等.
所以永远不要在主线程上进行任何网络调用.在某些情况下,它总是会在某些设备上导致ANR,例如当网络关闭时.
永远不要在主线程上做任何这些:
>读/写本地文件系统,包括属性和数据库
>沉重的计算
>网络
>任何类型的长时间运行/繁忙循环
以上所有将导致用户随机ANR.
标签:android,android-anr-dialog,chrome-custom-tabs 来源: https://codeday.me/bug/20190608/1196490.html