Remove unwanted White Space in WebView Android

后端 未结 11 2177
庸人自扰
庸人自扰 2020-11-30 02:05

I have started developing an App using WebView. Actually I am loading an Image with Webview (I like to use the built-in zoom controls of the class). I can successfully load

11条回答
  •  Happy的楠姐
    2020-11-30 02:29

    I already got it .

    here my logic code, When the application open the website you must get the size of your webview then set it on height

    here my code

     ViewGroup.MarginLayoutParams p = (ViewGroup.MarginLayoutParams) webpage.getLayoutParams();
            p.height = webpage.getHeight();
            Log.e(" webpage.getHeight()", String.valueOf(webpage.getHeight()));
            webpage.setLayoutParams(p);
    

    Hope you will take my code and my answer to :) works on any devices even tabs too :)

提交回复
热议问题