閱讀946 返回首頁    go 阿裏雲 go 技術社區[雲棲]


帶進度條的webview

     如果不使用係統自帶的TitleBar(即Activity被設置@android:style/Theme.NoTitleBar),那就需要自己來寫進度條了,這裏封裝了一個自定義控件和加載網頁的公共Activity,方便使用。

 

聲明

  歡迎轉載,但請保留文章原始出處:)

    博客園:https://www.cnblogs.com

    農民伯伯: https://over140.cnblogs.com   

 

正文

一、截圖

 

 

二、自定義控件

 
複製代碼
/**
 * 帶進度條的WebView
 * @author 農民伯伯
 * @see https://www.cnblogs.com/over140/archive/2013/03/07/2947721.html
 *
 */
@SuppressWarnings("deprecation")
public class ProgressWebView extends WebView {

    private ProgressBar progressbar;

    public ProgressWebView(Context context, AttributeSet attrs) {
        super(context, attrs);
        progressbar = new ProgressBar(context, null, android.R.attr.progressBarStyleHorizontal);
        progressbar.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, 3, 0, 0));
        addView(progressbar);
        //        setWebViewClient(new WebViewClient(){});
        setWebChromeClient(new WebChromeClient());
    }

    public class WebChromeClient extends android.webkit.WebChromeClient {
        @Override
        public void onProgressChanged(WebView view, int newProgress) {
            if (newProgress == 100) {
                progressbar.setVisibility(GONE);
            } else {
                if (progressbar.getVisibility() == GONE)
                    progressbar.setVisibility(VISIBLE);
                progressbar.setProgress(newProgress);
            }
            super.onProgressChanged(view, newProgress);
        }

    }

    @Override
    protected void onScrollChanged(int l, int t, int oldl, int oldt) {
        LayoutParams lp = (LayoutParams) progressbar.getLayoutParams();
        lp.x = l;
        lp.y = t;
        progressbar.setLayoutParams(lp);
        super.onScrollChanged(l, t, oldl, oldt);
    }
}
複製代碼

 

 

三、加載網頁的公共Activity

 
複製代碼
/**
 * 加載網頁的Activity
 *
 * @author 農民伯伯
 * @see https://www.cnblogs.com/over140/archive/2013/03/07/2947721.html
 *
 */
public class WebActivity extends BaseActivity {

    private ProgressWebView webview;
    private String url;
    private String name;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.commom_web);

        // ~~~ 獲取參數
        url = getIntent().getStringExtra("url");
        name = getIntent().getStringExtra("name");

        // ~~~ 綁定控件
        webview = (ProgressWebView) findViewById(R.id.webview);

        // ~~~ 設置數據
        titleText.setText(name);
        webview.getSettings().setJavaScriptEnabled(true);
        webview.setDownloadListener(new DownloadListener() {
            @Override
            public void onDownloadStart(String url, String userAgent, String contentDisposition, String mimetype, long contentLength) {
                if (url != null && url.startsWith("https://"))
                    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
            }
        });

        webview.loadUrl(url);
    }
}
複製代碼

 

commom_web.xml

 
複製代碼
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:andro
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <include layout="@layout/include_title" />

    <com.nmbb.ui.widget.ProgressWebView
        android:
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

</LinearLayout>
複製代碼

 

 

四、補充說明

1、還可以再優化一下,在標題欄加一個刷新按鈕。

2、如果加載的頁麵有需要下載文件,需要設置setDownloadListener方法,根據項目實際需求定製。

3、自定義控件是在轉載的,忘記出處,感謝~~

 

最後更新:2017-04-03 16:49:17

  上一篇:go &#39;System.Data.DataRow.DataRow(System.Data.DataRowBuilder)&#39; is inaccessible due to its protection leve
  下一篇:go Java中反射性能測試