Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android實戰教程第二篇之簡單實現兩種進度條效果

Android實戰教程第二篇之簡單實現兩種進度條效果

編輯:關於Android編程

本文實例實現點擊按鈕模擬進度條下載進度,“下載”完成進度條消失,供大家參考,具體內容如下

代碼如下:
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" 
 > 
<TextView 
 android:layout_width="fill_parent" 
 android:layout_height="wrap_content" 
 android:text="@string/hello" 
 /> 
<ProgressBar 
 android:id="@+id/firstBar" 
  
 android:layout_width="200dp" 
 android:layout_height="wrap_content" 
 android:visibility="gone" 
 /> 
<ProgressBar 
 android:id="@+id/secondBar" 
  
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:visibility="gone" 
 /> 
<Button 
 android:id="@+id/myButton" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:text="begin" 
 /> 
</LinearLayout> 

Activity:

package ydl.progressbar; 
 
import android.app.Activity; 
import android.os.Bundle; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.widget.ProgressBar; 
 
public class ProgressBarTest extends Activity { 
 /** Called when the activity is first created. */ 
 //聲明變量 
 private ProgressBar firstBar =null; 
 private ProgressBar secondBar = null; 
 private Button myButton = null; 
 private int i = 0 ; 
 @Override 
 public void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.main); 
  //根據控件的ID來取得代表控件的對象 
  firstBar = (ProgressBar)findViewById(R.id.firstBar); 
  secondBar = (ProgressBar)findViewById(R.id.secondBar); 
  myButton = (Button)findViewById(R.id.myButton); 
  myButton.setOnClickListener(new ButtonListener()); 
 } 
 class ButtonListener implements OnClickListener{ 
   
  @Override 
  public void onClick(View v) { 
   if(i == 0) 
   { 
    //設置進度條處於可見的狀態 
    firstBar.setVisibility(View.VISIBLE); 
    firstBar.setMax(150);//手動設置最大值,默認是100 
    secondBar.setVisibility(View.VISIBLE); 
   } 
   else if ( i < firstBar.getMax()){ 
    //設置主進度條的當前值 
    firstBar.setProgress(i); 
    //設置第二進度條的當前值 
    firstBar.setSecondaryProgress(i + 10); 
    //因為默認的進度條無法顯示進行的狀態 
    //secondBar.setProgress(i); 
     
   } 
   else{ 
    //設置進度條處於不可見狀態 
    firstBar.setVisibility(View.GONE); 
    secondBar.setVisibility(View.GONE); 
   } 
   i = i + 10 ; 
  } 
   
 } 
  
}

 以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持本站。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved