开发语言:Java
开发生态:Android
解决方案:
重写WebView(LollipopFixedWebView.java),在xml文件中使用。
public class LollipopFixedWebView extends WebView {
public LollipopFixedWebView(Context context) {
super(getFixedContext(context));
}
public LollipopFixedWebView(Context context, AttributeSet attrs) {
super(getFixedContext(context), attrs);
}
public LollipopFixedWebView(Context context, AttributeSet attrs, int defStyleAttr) {
super(getFixedContext(context), attrs, defStyleAttr);
}
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
public LollipopFixedWebView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(getFixedContext(context), attrs, defStyleAttr, defStyleRes);
}
private static Context getFixedContext(Context context) {
// Android Lollipop 5.0 & 5.1
if (Build.VERSION.SDK_INT >= 21 && Build.VERSION.SDK_INT < 23)
return context.createConfigurationContext(new Configuration());
return context;
}
}
在xml文件中使用
<com.***.***.LollipopFixedWebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>