White Line In Eclipse Web View
I am making a android app using jquery mobile and web view with eclipse. When i test it in the emulator or export it to my galaxy s2 i get a white line on the right and the whole
Solution 1:
This fixed it for me:
WebViewwebVw= (WebView) findViewById(R.id.yourwebview);
webVw.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);
Solution 2:
Check your XML, and set it to fill_parent for width.
Post a Comment for "White Line In Eclipse Web View"