編輯:關於Android編程
進度條ProgressBar是一個經常用到的組件,它的使用也很簡單,只需要把進度條顯示在前台,然後在後台啟動一個線程,根據需要修改進度條的狀態。我們來看一個例子,該程序運行效果如下圖所示:
該程序主布局文件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/progressBar1" android:layout_width="wrap_content" android:layout_height="wrap_content"/> <ProgressBar android:id="@+id/progressBar2" android:layout_width="wrap_content" android:layout_height="wrap_content" style="?android:attr/progressBarStyleLarge"/> <ProgressBar android:id="@+id/progressBar3" android:layout_width="wrap_content" android:layout_height="wrap_content" style="?android:attr/progressBarStyleSmall"/> <ProgressBar android:id="@+id/progressBar4" android:layout_width="match_parent" android:layout_height="wrap_content" style="?android:attr/progressBarStyleHorizontal" android:max="100" android:progress="0" android:secondaryProgress="70"/> <ProgressBar android:id="@+id/progressBar5" style="@android:style/Widget.ProgressBar.Large" android:layout_width="match_parent" android:layout_height="wrap_content"/> <ProgressBar android:id="@+id/progressBar6" style="@android:style/Widget.ProgressBar.Small" android:layout_width="match_parent" android:layout_height="wrap_content"/> <ProgressBar android:id="@+id/progressBar7" android:max="100" android:progress="0" android:secondaryProgress="70" style="@android:style/Widget.ProgressBar.Horizontal" android:layout_width="match_parent" android:layout_height="wrap_content"/> </LinearLayout>
主Activity文件內容如下:
package com.liuhaoyu; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.view.View; import android.widget.ProgressBar; import android.widget.Toast; public class MainActivity extends Activity { private ProgressBar pb1, pb2, pb3, pb4, pb5, pb6, pb7; private Handler PbHandler; private int progress = 0; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); pb1 = (ProgressBar)findViewById(R.id.progressBar1); pb2 = (ProgressBar)findViewById(R.id.progressBar2); pb3 = (ProgressBar)findViewById(R.id.progressBar3); pb4 = (ProgressBar)findViewById(R.id.progressBar4); pb5 = (ProgressBar)findViewById(R.id.progressBar5); pb6 = (ProgressBar)findViewById(R.id.progressBar6); pb7 = (ProgressBar)findViewById(R.id.progressBar7); PbHandler = new Handler(){ public void handleMessage(Message msg){ if(msg.what == 0x0){ pb4.setProgress(progress); pb7.setProgress(progress); } else { Toast.makeText(MainActivity.this, "任務執行成功!", Toast.LENGTH_SHORT).show(); pb1.setVisibility(View.GONE); pb2.setVisibility(View.GONE); pb3.setVisibility(View.GONE); pb4.setVisibility(View.GONE); pb5.setVisibility(View.GONE); pb6.setVisibility(View.GONE); pb7.setVisibility(View.GONE); } } }; new Thread(new Runnable() { public void run() { while (true) { progress += Math.random()*10; try{ Thread.sleep(200); } catch(InterruptedException e){ e.printStackTrace(); } Message m = new Message(); if(progress < 100){ m.what = 0x0; PbHandler.sendMessage(m); }else{ m.what=0x1; PbHandler.sendMessage(m); break; } } } }).start(); } }
本文實例講述了Android編程實現仿優酷旋轉菜單效果。分享給大家供大家參考,具體如下:首先,看下效果:不好意思,不會制作動態圖片,只好上傳靜態的了,如果誰會,請教教我吧
上一篇說了下usb camera uvc標准的 順便把CMOS做到一起 操作上基本一至 上一篇HAL層裡我已經提供了CMOS的相關接口 JNIEXPORT jint
1.windows共享文件夾裡 下載、解壓三星官方uboot源碼 2.復制到linux下的目錄 3.在共享文件夾裡面建立SourceInsight 工
無論是哪種交易軟件,對於程序員來講,最麻煩的就是去實現各種算法。本文以SAR算法的實現過程為例,為大家說明如何使用Warensoft Stock Service來實現高頻