程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> webview-Android:把圖像加載到WebView的中間位置

webview-Android:把圖像加載到WebView的中間位置

編輯:編程綜合問答
Android:把圖像加載到WebView的中間位置

我想在web視圖上把圖像加載到中間,但圖像顯示在web視圖的左上角。圖像是網絡的,而不是當地的。

gifView.loadUrl(mImageUrl); 
gifView.setWebViewClient(new WebViewClient() {

        @Override
        public void onPageFinished(WebView view, String url) {
            view.getSettings().setLoadsImagesAutomatically(true);
            if (mProgressBar != null) {
                mProgressBar.setVisibility(View.GONE);
            }
        }

        @Override
        public void onPageStarted(WebView view, String url, Bitmap favicon) {
            if (mProgressBar != null) {
                mProgressBar.setVisibility(View.VISIBLE);
            }
        }

    });

    <WebView
             android:id="@+id/gif_image"
             android:background="@null"
             android:layout_gravity="center"

            android:layout_width="fill_parent"
            android:layout_height="fill_parent" />

還添加了:

String HTML_FORMAT = "<html><body style=\"text-align: center; background-color: null; vertical-align: middle;\"><img src = \"%s\" /></body></html>";

         final String html = String.format(HTML_FORMAT, mImageUrl);

         gifView.loadDataWithBaseURL("", html, "text/html", "UTF-8", "");

我使用上面的代碼,怎麼把圖像加載到視圖的中間呢?

最佳回答:


試試這行代碼:

myWebView.loadData("<html><head><style type='text/css'>body{margin:auto auto;text-align:center;} img{width:100%25;} </style></head><body><img src='www.mysite.com/myimg.jpeg'/></body></html>" ,"text/html",  "UTF-8");
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved