Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Webview does not show Google map Full control button

I implemented one Web Application in android in that i want to call one URL and in that Page Google map is there

My issue is that in google map +, - Buttons works perfectly but Fullscreen button shows white blank screen.

It's showing in chrome app

Please, give me a solution?

like image 369
Mohit Trivedi Avatar asked Jul 27 '18 11:07

Mohit Trivedi


1 Answers

Did you add this to your webview config .?

yourWebView.setWebChromeClient(new WebChromeClient()); yourWebView.getSettings().setJavaScriptEnabled(true)

like image 72
al_mukthar Avatar answered Nov 07 '22 17:11

al_mukthar