一、
今天在BM技术讨论群听到群友说NestedScrollView嵌套WebView会崩溃,崩溃原因是在xml渲染时报错(目前发现只在vivo安卓5.x系统崩溃),如下:


private static Context getFixedContext(Context context) {
if (Build.VERSION.SDK_INT >= 21 && Build.VERSION.SDK_INT < 23) // Android Lollipop 5.0 & 5.1
return context.createConfigurationContext(new Configuration());
return context;
}