We had exact problems with our sites not showing up full screen in webview. After doing lot of research and experimentation, the following is what worked for us. No need to do anything on wix side;
WebSettings settings = webView.getSettings();
settings.setUseWideViewPort(true);
The above should be placed under " protected void onCreate(Bundle savedInstanceState) {
super .onCreate(savedInstanceState)"
Hope this helps.
Could you post couple of screenshots? Cause if this does the trick you definitely deserve a cookie!
Here you go Nathan. Hope it works for others too.
Screen without using;
settings.setUseWideViewPort(true);
Screen after using
settings.setUseWideViewPort(true);
Amazing!!! Im sure this will save lots of time to many people. Kudos!
Kudos to you as well. Thank you for starting discussion on a this topic. I thought there was something wrong with my wix site until I bumped into this thread and your comments made be to believe affirmatively that the issue is not on Wix side. So, I went onto dig more deeper into the issue and a possible solution.
I got same issue here but sometimes and not giving great experience for users but I solve it in the end it just need some tips and research Wix use a lot of java to give simple user experience you need an iOS or Android developer for that I did my app with pushing notifications and it looks great.
wow nice bro! can i get some references please from you in order to achieve the same thing? i am trying to show my Wix website in a webview to be downloadable from playstore and appstore
@nathan-river hi nathan how are you i have a question for you please
does the webview for wix websites created with apppinguine work without any problem on android and ios as well? does it show the same result as the mobile view of the original site?
thanks
@saisolinc @nathan-river Where do you put this code
WebSettings settings = webView.getSettings();
settings.setUseWideViewPort(true);
i cant seem to find where i can put this code at since I have the same webview issue with @nathan-river anyways