Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
[Comment deleted]
da...@google.com <da...@google.com>
na...@google.com <na...@google.com> #3
We're still trying to work out if we can work around this in the library.
In the mean-time, if you know that you are going to create a WebView in an Activity, you can do the following:
protected void onCreate(Bundle savedInstanceState) {
if (Build.VERSION.SDK_INT >= 24) {
new WebView(this);
}
super.onCreate(savedInstanceState);
}
In the mean-time, if you know that you are going to create a WebView in an Activity, you can do the following:
protected void onCreate(Bundle savedInstanceState) {
if (Build.VERSION.SDK_INT >= 24) {
new WebView(this);
}
super.onCreate(savedInstanceState);
}
Description
See comment:https://android-review.git.corp.google.com/c/platform/frameworks/support/+/2322095/comment/502aff66_2aa8592d/