このプログレスバーを正しく機能させるのに問題があります。誰かがソースを手伝ってくれる?何か足りないものはありますか?
web = (WebView) findViewById(R.id.webview01);
progressBar = (ProgressBar) findViewById(R.id.progressBar);
web.setWebViewClient(new myWebClient());
//ADDING THIS RESOLVED THE PROGRESS BAR ACTUALLY LOADING.
web.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(WebView view, int progress) {
progressBar.setProgress(progress); }
});
//ADDING THIS RESOLVED THE PROGRESS BAR ACTUALLY LOADING.
WebSettings websettings = web.getSettings();
websettings.setBuiltInZoomControls(true);
websettings.setUseWideViewPort(true);
websettings.setJavaScriptEnabled(true);
websettings.setAllowFileAccess(true);
websettings.setDomStorageEnabled(true);
websettings.setLoadWithOverviewMode(true);
websettings.setSavePassword(true);
web.loadUrl("http://www.google.com");
その後、コードの後半
//Loading the Actual Webpage
public class myWebClient extends WebViewClient
{
@Override
public void onPageStarted(WebView view, String url, Bitmap favicon) {
// TODO Auto-generated method stub
super.onPageStarted(view, url, favicon);
progressBar.setVisibility(View.VISIBLE);
}
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
// TODO Auto-generated method stub
view.loadUrl(url);
progressBar.setVisibility(View.VISIBLE);
return true;
}
//web.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(WebView view, int progress) {
progressBar.setProgress(progress);
}
@Override
public void onPageFinished(WebView view, String url) {
// TODO Auto-generated method stub
super.onPageFinished(view, url);
progressBar.setVisibility(View.GONE);
}
}
ウェブビュー自体は問題なく機能します。イルカやクロームなどのブラウザと同様に、水平方向の読み込みバーを作成しようとしています。
これがレイアウトです。
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bgapp"
android:fadingEdge="horizontal"
android:gravity="center"
android:orientation="vertical" >
<include
android:id="@+id/inc_blue"
android:layout_width="fill_parent"
android:layout_height="50dp"
layout="@layout/inc_enphase_bar_with_title_buttons" />
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:minHeight="8dip" />
<WebView
android:id="@+id/webview01"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1.15"
android:fadingEdge="vertical" >
</WebView>
エラーやアンチイングが発生しないため、logcatはなく、実際に読み込まれます。ウェブページの読み込み中に進行状況バーが表示されますが、アニメーションや読み込みの動きは表示されません。