android開發之ProgressBar的樣式設定匯總

來源:互聯網
上載者:User

多式樣ProgressBar

普通圓形ProgressBar

 

 

該類型進度條也就是一個表示運轉的過程,例如傳送簡訊,串連網路等等,表示一個過程正在執行中。

一般只要在XML布局中定義就可以了。

  1. <progressBar android:id="@+id/widget43"
  2.       android:layout_width="wrap_content"
  3.       android:layout_height="wrap_content"   
  4.       android:layout_gravity="center_vertical">
  5. </ProgressBar>

複製代碼

此時,沒有設定它的風格,那麼它就是圓形的,一直會旋轉的進度條。

各大小樣式圓形ProgressBar

超大號圓形ProgressBar

 

 

此時,給設定一個style風格屬性後,該ProgressBar就有了一個風格,這裡大號ProgressBar的風格是:

  1. style="?android:attr/progressBarStyleLarge"

複製代碼

完整XML定義是:

  1. <progressBar android:id="@+id/widget196"
  2.       android:layout_width="wrap_content"
  3.       android:layout_height="wrap_content"
  4.       style="?android:attr/progressBarStyleLarge">
  5. </ProgressBar>

複製代碼

小號圓形ProgressBar

2011-4-24 09:04:58 上傳

下載附件(1.21 KB) 


小號ProgressBar對應的風格是:

  1. style="?android:attr/progressBarStyleSmall"

複製代碼

標題型圓形ProgressBar

 

 

標題型ProgressBar對應的風格是:

  1. style="?android:attr/progressBarStyleSmallTitle"

複製代碼

完整XML定義是:

  1. <progressBar android:id="@+id/widget110"
  2.     android:layout_width="wrap_content"
  3.     android:layout_height="wrap_content"
  4.     style="?android:attr/progressBarStyleSmallTitle">
  5. </ProgressBar>

複製代碼

代碼中實現:

  1. @Override
  2.     protected void onCreate(Bundle savedInstanceState) {
  3.         // TODO Auto-generated method stub
  4.         super.onCreate(savedInstanceState);
  5.         requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
  6.         //請求視窗特色風格,這裡設定成不明確的進度風格
  7.         setContentView(R.layout.second);
  8.         setProgressBarIndeterminateVisibility(true);
  9.         //設定標題列中的不明確的進度條是否可以顯示
  10.     }

複製代碼

長形進度條

布局中的長形進度條

 

①首先在XML進行布局

  1. <progressBar android:id="@+id/progressbar_updown"
  2.         android:layout_width="200dp"
  3.         android:layout_height="wrap_content"
  4.         style="?android:attr/progressBarStyleHorizontal"
  5.         android:layout_gravity="center_vertical"
  6.         android:max="100"
  7.         android:progress="50"
  8.         android:secondaryProgress="70"    >

複製代碼

講解: 

 

②代碼中運用

  1. private ProgressBar myProgressBar;
  2. //定義ProgressBar
  3. myProgressBar = (ProgressBar) findViewById(R.id.progressbar_updown);
  4. //ProgressBar通過ID來從XML中擷取
  5. myProgressBar.incrementProgressBy(5);
  6. //ProgressBar進度值增加5
  7. myProgressBar.incrementProgressBy(-5);
  8. //ProgressBar進度值減少5
  9. myProgressBar.incrementSecondaryProgressBy(5);
  10. //ProgressBar背後的第二個進度條 進度值增加5
  11. myProgressBar.incrementSecondaryProgressBy(-5);
  12. //ProgressBar背後的第二個進度條 進度值減少5

複製代碼

頁面標題中的長形進度條



代碼實現:
①先設定一下視窗風格特性

  1. requestWindowFeature(Window.FEATURE_PROGRESS);
  2. //請求一個視窗進度條特性風格
  3. setContentView(R.layout.main);
  4. setProgressBarVisibility(true);
  5. //設定進度條可視

複製代碼

②然後設定進度值

  1. setProgress(myProgressBar.getProgress() * 100);
  2. //設定標題列中前景的一個進度條進度值
  3. setSecondaryProgress(myProgressBar.getSecondaryProgress() * 100);
  4. //設定標題列中後面的一個進度條進度值
  5. //ProgressBar.getSecondaryProgress() 是用來擷取其他進度條的進度值

複製代碼

ProgressDialog

ProgressDialog中的圓形進度條




ProgressDialog一般用來表示一個系統任務或是開啟任務時候的進度,有一種稍等的意思。
代碼實現:

  1.   ProgressDialog mypDialog=new ProgressDialog(this);
  2.             //執行個體化
  3.             mypDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
  4.             //設定進度條風格,風格為圓形,旋轉的
  5.             mypDialog.setTitle("Google");
  6.             //設定ProgressDialog 標題
  7.             mypDialog.setMessage(getResources().getString(R.string.second));
  8.             //設定ProgressDialog 提示資訊
  9.             mypDialog.setIcon(R.drawable.android);
  10.             //設定ProgressDialog 標題表徵圖
  11.             mypDialog.setButton("Google",this);
  12.             //設定ProgressDialog 的一個Button
  13.             mypDialog.setIndeterminate(false);
  14.             //設定ProgressDialog 的進度條是否不明確
  15.             mypDialog.setCancelable(true);
  16.             //設定ProgressDialog 是否可以按退回按鍵取消
  17.             mypDialog.show();
  18.             //讓ProgressDialog顯示

複製代碼

ProgressDialog中的長形進度條





代碼實現:

  1. ProgressDialog mypDialog=new ProgressDialog(this);
  2. //執行個體化
  3.             mypDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
  4.             //設定進度條風格,風格為長形,有刻度的
  5.             mypDialog.setTitle("地獄怒獸");
  6.             //設定ProgressDialog 標題
  7.             mypDialog.setMessage(getResources().getString(R.string.second));
  8.             //設定ProgressDialog 提示資訊
  9.             mypDialog.setIcon(R.drawable.android);
  10.             //設定ProgressDialog 標題表徵圖
  11.             mypDialog.setProgress(59);
  12.             //設定ProgressDialog 進度條進度
  13.             mypDialog.setButton("地獄曙光",this);
  14.             //設定ProgressDialog 的一個Button
  15.             mypDialog.setIndeterminate(false);
  16.             //設定ProgressDialog 的進度條是否不明確
  17.             mypDialog.setCancelable(true);
  18.             //設定ProgressDialog 是否可以按退回按鍵取消
  19.             mypDialog.show();
  20.             //讓ProgressDialog顯示   

複製代碼



AlertDialog.Builder

AlertDialog中的圓形ProgressBar





①先來設計一個Layout,待會兒作為一個View,加入AlertDialog.Builder

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:layout_gravity="center_horizontal"
  4.     android:layout_width="wrap_content"
  5.     android:layout_height="wrap_content">
  6.     <LinearLayout android:id="@+id/LinearLayout01"
  7.     android:layout_width="wrap_content"
  8.     android:layout_height="wrap_content">
  9. </LinearLayout>
  10.     <ProgressBar android:layout_gravity="center_vertical|center_horizontal"
  11.         android:layout_height="wrap_content"
  12.         android:progress="57"
  13.         android:id="@+id/myView_ProgressBar2"
  14.         android:layout_width="wrap_content">
  15. </ProgressBar>
  16. </LinearLayout>

複製代碼

②代碼羅

  1. private AlertDialog.Builder AlterD,AlterD2;
  2. //定義提示對話方塊
  3. private LayoutInflater layoutInflater;
  4. //定義布局過濾器
  5. private LinearLayout myLayout;
  6. //定義布局
  7. layoutInflater2=(LayoutInflater) getSystemService(this.LAYOUT_INFLATER_SERVICE);
  8. //獲得系統的布局過濾服務
  9. myLayout2=(LinearLayout) layoutInflater2.inflate(R.layout.roundprogress, null);
  10. //得到事先設計好的布局
  11. AlterD2.setTitle(getResources().getString(R.string.RoundO));
  12. //設定對話方塊標題
  13. AlterD2.setIcon(R.drawable.ma);
  14. //設定對話方塊表徵圖
  15. AlterD2.setMessage(getResources().getString(R.string.ADDView));
  16. //設定對話方塊提示資訊
  17. AlterD2.setView(myLayout2);
  18. //設定對話方塊中的View
  19. AlterD2.show();
  20. //讓對話方塊顯示

複製代碼

AlertDialog中的長形ProgressBar(可控制)

①先來設計一個Layout,待會兒作為一個View,加入AlertDialog.Builder

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     android:layout_gravity="center_horizontal"
  4. android:layout_width="wrap_content"
  5.     android:layout_height="wrap_content">
  6.     <Button
  7. android:layout_height="wrap_content"
  8. android:text="-"
  9.         android:layout_width="50dp"
  10. android:id="@+id/myView_BT_Down">
  11. </Button>
  12.     <ProgressBar
  13. android:layout_gravity="center_vertical"
  14.         android:layout_height="wrap_content"
  15. style="?android:attr/progressBarStyleHorizontal"
  16.         android:id="@+id/myView_ProgressBar"
  17. android:progress="57"
  18.         android:layout_width="178dp">
  19. </ProgressBar>
  20.     <Button android:layout_height="wrap_content"
  21. android:text="+"
  22.         android:layout_width="50dp"
  23. android:id="@+id/myView_BT_Up">
  24. </Button>
  25. </LinearLayout>

複製代碼

②代碼羅

  1. private AlertDialog.Builder AlterD,AlterD2;
  2. //定義提示對話方塊
  3. private LayoutInflater layoutInflater;
  4. //定義布局過濾器
  5. private LinearLayout myLayout;
  6. //定義布局
  7. layoutInflater=(LayoutInflater) getSystemService(this.LAYOUT_INFLATER_SERVICE);
  8. //獲得系統的布局過濾服務
  9. myLayout=(LinearLayout) layoutInflater.inflate(R.layout.myview, null);
  10. //得到事先設計好的布局
  11. myup=(Button) myLayout.findViewById(R.id.myView_BT_Up);
  12. mydown=(Button) myLayout.findViewById(R.id.myView_BT_Down);
  13. mypro=(ProgressBar)myLayout.findViewById(R.id.myView_ProgressBar);
  14. //通過myLayout.findViewById來擷取自訂View中的Widget控制項元素
  15. myup.setOnClickListener(this);
  16. //設定對話方塊View中的按鈕監聽器
  17. mydown.setOnClickListener(this);
  18. //設定對話方塊View中的按鈕監聽器
  19. mypro.setProgress(Tag);
  20. //設定一個Tag作為進度值
  21. AlterD.setTitle(getResources().getString(R.string.RectO));
  22. //設定對話方塊標題
  23. AlterD.setIcon(R.drawable.mb);
  24. //設定對話方塊表徵圖
  25. AlterD.setMessage(getResources().getString(R.string.ADDView));
  26. //設定對話方塊提示資訊
  27. AlterD.setView(myLayout);
  28. //設定對話方塊添加的View
  29. AlterD.setPositiveButton("OK", new DialogInterface.OnClickListener(){
  30.     @Override
  31.     public void onClick(DialogInterface dialog, int which) {
  32.         // TODO Auto-generated method stub
  33.         MyProgressBar.Tag=mypro.getProgress();
  34.     }});
  35. //設定對話方塊按鈕,以及按鈕的事件監聽器
  36. AlterD.show();
  37. //讓對話方塊顯示

複製代碼

③進度條進度值的按鈕事件

  1. myup.setOnClickListener(this);
  2. //設定對話方塊View中的按鈕監聽器
  3. mydown.setOnClickListener(this);
  4. //設定對話方塊View中的按鈕監聽器
  5. 對應的代碼:
  6.     @Override
  7.     public void onClick(View button) {
  8.         // TODO Auto-generated method stub
  9.         SwitchUPorDown(button);
  10.     }
  11.     private void SwitchUPorDown(View button) {
  12.         switch (button.getId()) {
  13.                 case R.id.myView_BT_Up: {
  14.             mypro.incrementProgressBy(1);   
  15.         }
  16.             break;
  17.         case R.id.myView_BT_Down: {
  18.             mypro.incrementProgressBy(-1);
  19.         }
  20.             break;
  21.         default:
  22.             break;
  23.         }
  24.     }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.