1
你好 嗯,我是非常基本的Java,這裏是我的Java代碼關於我的活動類,我不能在webview中添加進度條,請幫我在我的代碼 Here我的Java代碼:在WebView的Tab主機上添加進度條
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
import android.widget.Toast;
//Set Activity Irancell:
public class Irancell extends Activity {
WebView Irancell_Charge;
//Start App Code at here:
@Override
// Set iCicle:
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
//Load Irancel Buy Creadit Page:
Irancell_Charge=new WebView(this);
setContentView(Irancell_Charge);
Irancell_Charge.getSettings().setJavaScriptEnabled(true);
Irancell_Charge.loadUrl("http://www.echarge.ir/Templates/irancellshop/m/");
//Text Label:
Toast
.makeText(this, "MTN Irancell Recharge Cards...", Toast.LENGTH_LONG)
.show();
}
}
謝謝...