2016-03-10 74 views
0

當我使用webview加載html代碼時,如果設備在android 5.0以上,webview加載的頁面是全屏而沒有其他設置,但是如果設備低於android 5.0,頁面不能是全屏,爲什麼?如何解決這個問題呢?如何通過webview加載html頁面的全屏?

+1

您已經嘗試了什麼!代碼請 –

+0

當頁面第一次加載時,如果我想頁面和屏幕一樣寬,那麼我可以通過手勢放大頁面,我應該怎麼做 – Circle

+0

book_intro_detail.loadDataWithBaseURL(const.BASE_URL,good.goodsDesc,「text/html 「,」UTF-8「,null); good.goodsDesc是HTML代碼 – Circle

回答

0

試試下面的一段代碼

//get the id  
WebView browser = (WebView) findViewById(R.id.webview); 
//set the following params as well 
browser.getSettings().setLoadWithOverviewMode(true); 
browser.getSettings().setUseWideViewPort(true); 
+0

,當頁面第一次加載時,如果我想要的頁面和屏幕一樣寬,那麼我可以通過手勢放大頁面,我應該怎麼做 – Circle

相關問題