-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Android] Fatal Exception: java.lang.IllegalArgumentException: Given view not a child InAppWebView.onFloatingActionGlobalLayout #2207
Comments
NOTE: This comment is auto-generated. Are you sure you have already searched for the same problem? Some people open new issues but they didn't search for something similar or for the same issue. Please, search for it using the GitHub issue search box or on the official inappwebview.dev website, or, also, using Google, StackOverflow, etc. before posting a new one. You may already find an answer to your problem! If this is really a new issue, then thank you for raising it. I will investigate it and get back to you as soon as possible. Please, make sure you have given me as much context as possible! Also, if you didn't already, post a code example that can replicate this issue. In the meantime, you can already search for some possible solutions online! Because this plugin uses native WebView, you can search online for the same issue adding Following these steps can save you, me, and other people a lot of time, thanks! |
sample code @override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: Stack(
children: [
Column(
children: [
Expanded(
child: InAppWebView(
onGeolocationPermissionsShowPrompt:
(controller, origin) async {
final geoLocationPermission =
GeolocationPermissionShowPromptResponse(
origin: origin,
allow: true,
retain: true,
);
return geoLocationPermission;
},
key: _inAppWebViewKey,
initialUrlRequest: URLRequest(
url: WebUri.uri(Uri.parse(widget.url)),
headers: {'header': 'Header'},
),
initialUserScripts: UnmodifiableListView<UserScript>([]),
initialSettings: InAppWebViewSettings(
userAgent: '...agent',
useShouldOverrideUrlLoading: true,
transparentBackground: true,
useHybridComposition: false,
layoutAlgorithm: LayoutAlgorithm.TEXT_AUTOSIZING,
),
onPermissionRequest: (controller, permissionRequest) async {
return PermissionResponse(
resources: permissionRequest.resources,
action: PermissionResponseAction.GRANT,
);
},
shouldOverrideUrlLoading:
(controller, navigationAction) async {
// ...
return NavigationActionPolicy.ALLOW;
},
onReceivedHttpAuthRequest: (
controller,
authenticationChallenge,
) async {
log('BaseInAppWebView'
'#onReceivedHttpAuthRequest');
return null;
},
onCreateWindow: (controller, createWindowAction) async {
return null;
},
),
),
BottomBar(),
],
),
],
),
);
} |
Environment
Device information:
Description
Stacktrace/Logcat
Fatal Exception: java.lang.IllegalArgumentException: Given view not a child of com.pichillilorenzo.flutter_inappwebview_android.webview.in_app_webview.InAppWebView{f843dc VFEDHVCL. ......ID 0,0-1440,2257}
at android.view.ViewGroup.updateViewLayout(ViewGroup.java:4944)
at com.pichillilorenzo.flutter_inappwebview_android.webview.in_app_webview.InAppWebView.onFloatingActionGlobalLayout(:64)
at com.pichillilorenzo.flutter_inappwebview_android.webview.in_app_webview.InAppWebView$16.onReceiveValue(:64)
at com.pichillilorenzo.flutter_inappwebview_android.webview.in_app_webview.InAppWebView$16.onReceiveValue(:2)
at WV.vb.onResult(chromium-TrichromeWebViewGoogle6432.aab-stable-647807133:3)
at org.chromium.base.Callback.a(chromium-TrichromeWebViewGoogle6432.aab-stable-647807133:1)
at WV.ub.run(chromium-TrichromeWebViewGoogle6432.aab-stable-647807133:5)
at android.os.Handler.handleCallback(Handler.java:883)
at android.os.Handler.dispatchMessage(Handler.java:100)
at android.os.Looper.loop(Looper.java:359)
at android.app.ActivityThread.main(ActivityThread.java:7418)
at java.lang.reflect.Method.invoke(Method.java)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:492)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:935)
The text was updated successfully, but these errors were encountered: