一 、ProgressDialog
ProgressDialog與ProgressBar在UI中動態顯示一個載入表徵圖顯示程式運行狀態。
ProgressDialog是繼承自Android.app.ProgressDialog所設計的互動交談視窗,使用時,必須建立ProgressDialog對象,在運行時會彈出“對話方塊”作為提醒,此時應用程式後台失去焦點(即此時無法對UI組件進行操作),直到進程結束後,才會將控制權交給應用程式,如果在Activity當中不希望後台失焦,又希望提示User有某背景程式正處於忙碌階段,那麼ProgressBar就會派上用場了。
複製代碼 代碼如下:ProgressDialog mProgressDialog = new ProgressDialog(TestProgerssDialogActivity.this);
// 設定mProgressDialog風格
mProgressDialog.setProgress(ProgressDialog.STYLE_SPINNER);//圓形
mProgressDialog.setProgress(ProgressDialog.STYLE_HORIZONTAL);//水平
// 設定mProgressDialog標題
mProgressDialog.setTitle("提示");
// 設定mProgressDialog提示
mProgressDialog.setMessage("這是一個圓形進度條對話方塊");
// 設定mProgressDialog進度條的表徵圖
mProgressDialog.setIcon(R.drawable.flag);
// 設定mProgressDialog的進度條是否不明確
//不滾動時,當前值在最小和最大值之間移動,一般在進行一些無法確定操作時間的任務時作為提示,明確時就是根據你的進度可以設定現在的進度值
mProgressDialog.setIndeterminate(false);
//mProgressDialog.setProgress(m_count++);
// 是否可以按回退鍵取消
mProgressDialog.setCancelable(true);
// 設定mProgressDialog的一個Button
mProgressDialog.setButton("確定", new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int which)
{
dialog.cancel();
}
});
// 顯示mProgressDialogmProgressDialog.show();
複製代碼 代碼如下: mProgressDialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
@Override
public void onCancel(DialogInterface dialog) {
// TODO Auto-generated method stub
mProgressDialog.hide();
webview.stopLoading();
}
});
當有ProgressDialog時,點擊back時,會首先取消ProgressDialog ,以上代碼可以監聽進度條被取消事件(也就是點擊Back鍵取消ProgressDialog),此時可以在這裡作一些取消後台操作的處理。
二、ProgressBar
XML重要屬性
android:progressBarStyle:預設進度條樣式
android:progressBarStyleHorizontal:水平樣式
重要方法
getMax():返回這個進度條的範圍的上限
getProgress():返回進度
getSecondaryProgress():返回次要進度
incrementProgressBy(int diff):指定增加的進度
isIndeterminate():指示進度條是否在不確定模式下
setIndeterminate(boolean indeterminate):設定不確定模式下
setVisibility(int v):設定該進度條是否可視
重要事件
onSizeChanged(int w, int h, int oldw, int oldh):當進度值改變時引發此事件
複製代碼 代碼如下:<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Welcome to blog" />
<ProgressBar
android:id="@+id/rectangleProgressBar"
style="?android:attr/progressBarStyleHorizontal" mce_style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:visibility="gone"
/>
<ProgressBar
android:id="@+id/circleProgressBar"
style="?android:attr/progressBarStyleLarge" mce_style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
/>
<Button android:id="@+id/button"
android:text="Show ProgressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>