Android控制項之ProgressBar探究

來源:互聯網
上載者:User

    ProgressBar位於android.widget包下,其繼承於View,主要用於顯示一些操作的進度。應用程式可以修改其長度表示當前後台操作的完成情況。因為進度條會移動,所以長時間載入某些資源或者執行某些耗時的操作時,不會使使用者介面失去響應。ProgressBar類的使用非常簡單,只需將其顯示到前台,然後啟動一個後台線程定時更改表示進度的數值即可。

以下ProgressBar跟Handle結合,類比進度條的使用,當進度條完成時會跳轉到TestActivity

main.xml布局檔案

<?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">
<!-- 長方形進度條,一開始不可見,直到點擊按鈕時才出現進度條 -->
<ProgressBar android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
mce_style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:visibility="gone"
android:max="100" />
<!-- 圓形進度條 -->
<!--<ProgressBar android:id="@+id/progressBar"
style="?android:attr/progressBarStyleLarge"
mce_style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />-->
<Button android:id="@+id/start"
android:text="啟動進度條"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button android:id="@+id/stop"
android:text="停止進度條"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>

PbActivity類

package com.ljq.pb;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.widget.Button;
import android.widget.ProgressBar;

public class PbActivity extends Activity {
private ProgressBar progressBar = null;
private Button start = null, stop = null;
// 定義Handler對象
private Handler handler = new Handler();


@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

progressBar = (ProgressBar) findViewById(R.id.progressBar);
progressBar.setProgress(0);

start = (Button) findViewById(R.id.start);
start.setOnClickListener(new View.OnClickListener() {

public void onClick(View v) {
handler.post(runnable); //開始執行
}

});
stop=(Button)findViewById(R.id.stop);
stop.setOnClickListener(new View.OnClickListener() {

public void onClick(View v) {
handler.removeCallbacks(runnable);//停止執行
progressBar.setProgress(0);
}

});
}

int pro=0;
Runnable runnable=new Runnable(){
public void run() {
progressBar.setVisibility(View.VISIBLE);
pro=progressBar.getProgress()+10;
progressBar.setProgress(pro);
//如果進度小於100,,則延遲1000毫秒後重複執行runnable
if(pro<100){
handler.postDelayed(runnable, 1000);
}else{
progressBar.setVisibility(View.GONE);
startActivity(new Intent(PbActivity.this, TestActivity.class));
handler.removeCallbacks(runnable);
progressBar.setProgress(0);
}
}
};
}

運行結果

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.