上一讲中介绍了Spinner、AutoCompleteTextView、DatePicker、TimePicker,本节主要讲解ProgressBar、SeekBar和RatingBar。

      一、ProgressBar进度条

      在某项延续性工作的进展过程中为了不让用户觉得程序死掉了,需要有个活动的进度条,表示此过程正在进行中。Android中使用ProgressBar来实现这一功能:

      1、简单的进度条

      在xml中添加:

XML/HTML代码
  1. <ProgressBar android:id=”@+id/ProgressBar01″   
  2. android:layout_width=”wrap_content”   
  3. android:layout_height=”wrap_content”>  
  4. </ProgressBar>  

       就可以看到下面,圆形的、大大的圈圈:

Android学习指南之十一:ProgressBar、SeekBar和RatingBar

       2、各种各样的圆圈:

Android学习指南之十一:ProgressBar、SeekBar和RatingBar

       注意标题栏上也有一个进度条,下面是代码:

Java代码
  1. package android.basic.lesson11;   
  2.   
  3. import android.app.Activity;   
  4. import android.os.Bundle;   
  5. import android.view.Window;   
  6.   
  7. public class MainHelloProgressBar extends Activity {   
  8.     /** Called when the activity is first created. */  
  9.     @Override  
  10.     public void onCreate(Bundle savedInstanceState) {   
  11.         super.onCreate(savedInstanceState);   
  12.       //在标题条里放置进度条。请求窗口特色风格,这里设置成不明确的进度风格   
  13.       requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);   
  14.       setContentView(R.layout.main);   
  15.       //设置标题栏中的不明确的进度条是否可以显示,当你需要表示处理中的时候设置为True,处理完毕后设置为false   
  16.       setProgressBarIndeterminateVisibility(true);   
  17.     }   
  18. }  


       下面试main.xml中的代码,大家注意黑体字部分的内容,看看不同样式的不同的表现:

XML/HTML代码
  1. <?xml version=”1.0″ encoding=”utf-8″?>  
  2. <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”   
  3. android:orientation=”vertical”   
  4. android:background=”#003399″   
  5. android:layout_width=”fill_parent”   
  6. android:layout_height=”fill_parent”   
  7. >  
  8. <ProgressBar android:id=”@+id/ProgressBar01″   
  9. android:layout_width=”wrap_content”   
  10. android:layout_height=”wrap_content”>  
  11. </ProgressBar>  
  12. <ProgressBar android:id=”@+id/ProgressBar02″   
  13. style=”?android:attr/progressBarStyleLarge”           大圆圈   
  14. android:layout_width=”wrap_content”   
  15. android:layout_height=”wrap_content”>  
  16. </ProgressBar>  
  17. <ProgressBar android:id=”@+id/ProgressBar03″   
  18. style=”?android:attr/progressBarStyleSmall”          小圆圈   
  19. android:layout_width=”wrap_content”   
  20. android:layout_height=”wrap_content”>  
  21. </ProgressBar>  
  22. <ProgressBar android:id=”@+id/ProgressBar03″   
  23. style=”?android:attr/progressBarStyleSmallTitle”   标题条的样式   
  24. android:layout_width=”wrap_content”   
  25. android:layout_height=”wrap_content”>  
  26. </ProgressBar>  
  27. </LinearLayout>  

       3、长条状的进度条

       xml代码:

XML/HTML代码
  1. <ProgressBar android:id=”@+id/ProgressBar04″      
  2. style=”?android:attr/progressBarStyleHorizontal”      
  3. android:layout_marginLeft=”10dp”      
  4. android:layout_marginRight=”10dp”      
  5. android:max=”100″                                  最大刻度按100算      
  6. android:progress=”30″                              第一进度是30      
  7. android:secondaryProgress=”80″              第二进度是80      
  8. android:layout_width=”fill_parent”              进度条的显示长度是铺满父窗口      
  9. android:layout_height=”wrap_content”>     
  10. </ProgressBar>     
  11. <?xml version=”1.0″ encoding=”utf-8″?>     
  12. <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”      
  13. android:orientation=”vertical”      
  14. android:background=”#003399″      
  15. android:layout_width=”fill_parent”      
  16. android:layout_height=”fill_parent”      
  17. >     
  18. <ProgressBar android:id=”@+id/ProgressBar04″      
  19. style=”?android:attr/progressBarStyleHorizontal”      
  20. android:layout_marginTop=”10dp”      
  21. android:layout_marginLeft=”10dp”      
  22. android:layout_marginRight=”10dp”      
  23. android:max=”100″      
  24. android:progress=”30″      
  25. android:secondaryProgress=”80″      
  26. android:layout_width=”fill_parent”      
  27. android:layout_height=”wrap_content”>     
  28. </ProgressBar>     
  29. </LinearLayout>  
Java代码
  1.   
  2.   
  3. package android.basic.lesson11;   
  4.   
  5. import android.app.Activity;   
  6.   
  7. import android.os.Bundle;   
  8.   
  9. import android.view.Window;   
  10.   
  11. public class MainHelloProgressBar extends Activity {   
  12.   
  13. /** Called when the activity is first created. */  
  14.   
  15. @Override  
  16.   
  17. public void onCreate(Bundle savedInstanceState) {   
  18.   
  19. super.onCreate(savedInstanceState);   
  20.   
  21. //设置窗口进度条特性风格   
  22.   
  23. requestWindowFeature(Window.FEATURE_PROGRESS);   
  24.   
  25. setContentView(R.layout.main);   
  26.   
  27. //设置进度条可见性   
  28.   
  29. setProgressBarVisibility(true);   
  30.   
  31. //设置进度条进度值,要乘以100的   
  32.   
  33. setProgress(60*100);   
  34.   
  35. setSecondaryProgress(80*100);   
  36. }   
  37.   
  38. }  

       运行效果:

Android学习指南之十一:ProgressBar、SeekBar和RatingBar

       同学们可以使用下面的代码对,进度条进行一些操作练习:

       private ProgressBar pb;                                                        //定义ProgressBar
       pb = (ProgressBar) findViewById(R.id.ProgressBar01);
       pb.incrementProgressBy(5);                                                 //ProgressBar进度值增加5
       pb.incrementProgressBy(-5);                                                //ProgressBar进度值减少5
       pb.incrementSecondaryProgressBy(5);                                 //ProgressBar第二个进度条 进度值增加5
       pb.incrementSecondaryProgressBy(-5);                                //ProgressBar第二个进度条 进度值减少5

       二、SeekBar拖动条(滑动条)

       SeekBar可以作为音乐播放器的进度指示和调整工具,音量调整工具等,SeekBar是ProgressBar的一个子类,下面我们用一个可以改变并显示当前进度的拖动条例子来演示一下它的使用:

       1、main.xml

       < ?xml version="1.0" encoding="utf-8"?>                               

       2、java:

Java代码
  1. package android.basic.lesson11;   
  2.   
  3. import android.app.Activity;   
  4. import android.os.Bundle;   
  5. import android.widget.SeekBar;   
  6. import android.widget.SeekBar.OnSeekBarChangeListener;   
  7. import android.widget.TextView;   
  8. import android.widget.Toast;   
  9.   
  10. public class MainHelloSeekBar extends Activity {   
  11.         /** Called when the activity is first created. */  
  12.         @Override  
  13.         public void onCreate(Bundle savedInstanceState) {   
  14.                 super.onCreate(savedInstanceState);   
  15.                 setContentView(R.layout.main);   
  16.   
  17.                 //找到拖动条和文本框   
  18.                 final SeekBar sb = (SeekBar) findViewById(R.id.SeekBar01);   
  19.                 final TextView tv1 = (TextView) findViewById(R.id.TextView01);   
  20.   
  21.                 //设置拖动条的初始值和文本框的初始值   
  22.                 sb.setMax(100);   
  23.                 sb.setProgress(30);   
  24.                 tv1.setText("当前进度:" + sb.getProgress());   
  25.   
  26.                 //设置拖动条改变监听器   
  27.                 OnSeekBarChangeListener osbcl = new OnSeekBarChangeListener() {   
  28.   
  29.                         @Override  
  30.                         public void onProgressChanged(SeekBar seekBar, int progress,   
  31.                                         boolean fromUser) {   
  32.                                 tv1.setText("当前进度:" + sb.getProgress());   
  33.                                 Toast.makeText(getApplicationContext(), "onProgressChanged",   
  34.                                                 Toast.LENGTH_SHORT).show();   
  35.                         }   
  36.   
  37.                         @Override  
  38.                         public void onStartTrackingTouch(SeekBar seekBar) {   
  39.                                 Toast.makeText(getApplicationContext(), "onStartTrackingTouch",   
  40.                                                 Toast.LENGTH_SHORT).show();   
  41.                         }   
  42.   
  43.                         @Override  
  44.                         public void onStopTrackingTouch(SeekBar seekBar) {   
  45.                                 Toast.makeText(getApplicationContext(), "onStopTrackingTouch",   
  46.                                                 Toast.LENGTH_SHORT).show();   
  47.                         }   
  48.   
  49.                 };   
  50.   
  51.                 //为拖动条绑定监听器   
  52.                 sb.setOnSeekBarChangeListener(osbcl);   
  53.   
  54.         }   
  55. }  

       3、运行程序:

Android学习指南之十一:ProgressBar、SeekBar和RatingBar

Android学习指南之十一:ProgressBar、SeekBar和RatingBar

         三、RatingBar评分条

         RatingBar评分条是SeekBar拖动条的子类。现阶段系统自带了3种样式,我们同样用例子来演示他的使用方法和属性设置:

         1、main.xml的代码:

XML/HTML代码
  1. <?xml version=”1.0″ encoding=”utf-8″?>  
  2. <LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”   
  3. android:orientation=”vertical”   
  4. android:layout_width=”fill_parent”   
  5. android:layout_height=”fill_parent”   
  6. >  
  7.   
  8. <RatingBar  
  9. android:id=”@+id/RatingBar01″   
  10. android:layout_width=”wrap_content”   
  11. android:rating=”3″                                             默认分值设为3   
  12. android:layout_marginTop=”20dp”   
  13. android:layout_height=”wrap_content”>  
  14. </RatingBar>  
  15.   
  16. <RatingBar  
  17. android:id=”@+id/RatingBar03″   
  18. android:layout_width=”wrap_content”   
  19. android:numStars=”5″                                      星星数量设为5   
  20. android:rating=”4″                                            默认分值设为4   
  21. android:isIndicator=”false”          在ratingBarStyleIndicator样式中此项默认值是TRUE,会导致不可操作   
  22. style=”?android:attr/ratingBarStyleIndicator”      指示器(Indicator)样式   
  23. android:layout_marginTop=”20dp”   
  24. android:layout_height=”wrap_content”>  
  25. </RatingBar>  
  26. <RatingBar  
  27. android:id=”@+id/RatingBar02″   
  28. android:layout_width=”wrap_content”   
  29. android:isIndicator=”false”                           同上   
  30. android:numStars=”10″   
  31. android:rating=”8″   
  32. style=”?android:attr/ratingBarStyleSmall”        小星星样式   
  33. android:layout_marginTop=”20dp”   
  34. android:layout_height=”wrap_content”>  
  35. </RatingBar>  
  36. </LinearLayout>  

        2、在HelloRatingBar.java的代码里我们实现了3个评分条联动的功能:

Java代码
  1. package android.basic.lesson11;   
  2.   
  3. import android.app.Activity;   
  4. import android.os.Bundle;   
  5. import android.widget.RatingBar;   
  6. import android.widget.RatingBar.OnRatingBarChangeListener;   
  7.   
  8. public class MainHelloRatingBar extends Activity {   
  9.     /** Called when the activity is first created. */  
  10.     @Override  
  11.     public void onCreate(Bundle savedInstanceState) {   
  12.         super.onCreate(savedInstanceState);   
  13.         setContentView(R.layout.main);   
  14.   
  15.         //定义组件对象   
  16.         final RatingBar rb1 = (RatingBar)findViewById(R.id.RatingBar01);   
  17.         final RatingBar rb2 = (RatingBar)findViewById(R.id.RatingBar02);   
  18.         final RatingBar rb3 = (RatingBar)findViewById(R.id.RatingBar03);   
  19.   
  20.         //定义评分监听器   
  21.         OnRatingBarChangeListener orbcl= new OnRatingBarChangeListener(){   
  22.   
  23.                         @Override  
  24.                         public void onRatingChanged(RatingBar ratingBar, float rating,   
  25.                                         boolean fromUser) {   
  26.                                                 switch(ratingBar.getId()){   
  27.                                                 case R.id.RatingBar01:   
  28.                                                         //把第一个评分条的值取出来设置给其他评分条   
  29.                                                         rb2.setRating(rb1.getRating());   
  30.                                                         rb3.setRating(rb1.getRating()*2);//十颗星所以乘以2   
  31.                                                         break;   
  32.                                                 case R.id.RatingBar02:   
  33.                                                         rb1.setRating(rb2.getRating());   
  34.                                                         rb3.setRating(rb2.getRating()*2);   
  35.                                                         break;   
  36.                                                 case R.id.RatingBar03:   
  37.                                                         rb1.setRating(rb3.getRating()/2);   
  38.                                                         rb2.setRating(rb3.getRating()/2);   
  39.                                                         break;   
  40.                                 }   
  41.                         }   
  42.         } ;   
  43.   
  44.         //绑定监听器   
  45.         rb1.setOnRatingBarChangeListener(orbcl);   
  46.         rb2.setOnRatingBarChangeListener(orbcl);   
  47.         rb3.setOnRatingBarChangeListener(orbcl);   
  48.     }   
  49. }  

       3、运行程序,点击评分条看看效果,使用左右键再试试

Android学习指南之十一:ProgressBar、SeekBar和RatingBar

        有兴趣的同学可以研究一下,如何更换评分条中的图片,譬如罢星星换成花朵什么的。

本文发布:Android开发网
本文地址:http://www.jizhuomi.com/android/course/95.html
2012年7月1日
发布:鸡啄米 分类:Android开发教程 浏览: 评论:0