2
A
回答
2
您可以通過以下方式執行 使用進度欄的關鍵是使用「線程」運行時間消耗任務,並使用另一個「線程」相應地更新進度欄狀態。閱讀代碼的評論,它應該是不言自明的。
import android.app.Activity;
import android.app.ProgressDialog;
import android.os.Bundle;
import android.os.Handler;
import android.widget.Button;
import android.view.View;
import android.view.View.OnClickListener;
public class MyAndroidAppActivity extends Activity {
Button btnStartProgress;
ProgressDialog progressBar;
private int progressBarStatus = 0;
private Handler progressBarHandler = new Handler();
private long fileSize = 0;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
addListenerOnButton();
}
public void addListenerOnButton() {
btnStartProgress = (Button) findViewById(R.id.btnStartProgress);
btnStartProgress.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// prepare for a progress bar dialog
progressBar = new ProgressDialog(v.getContext());
progressBar.setCancelable(true);
progressBar.setMessage("File downloading ...");
progressBar.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
progressBar.setProgress(0);
progressBar.setMax(100);
progressBar.show();
// reset progress bar status
progressBarStatus = 0;
// reset filesize
fileSize = 0;
new Thread(new Runnable() {
public void run() {
while (progressBarStatus < 100) {
// process some tasks
progressBarStatus = doSomeTasks();
// your computer is too fast, sleep 1 second
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
// Update the progress bar
progressBarHandler.post(new Runnable() {
public void run() {
progressBar.setProgress(progressBarStatus);
}
});
}
// ok, file is downloaded,
if (progressBarStatus >= 100) {
// sleep 2 seconds, so that you can see the 100%
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
// close the progress bar dialog
progressBar.dismiss();
}
}
}).start();
}
});
}
// file download simulator... a really simple
public int doSomeTasks() {
while (fileSize <= 1000000) {
fileSize++;
if (fileSize == 100000) {
return 10;
} else if (fileSize == 200000) {
return 20;
} else if (fileSize == 300000) {
return 30;
}
// ...add your own
}
return 100;
}
}
打開「佈局/ main.xml中」文件,只需添加普通按鈕進行演示。
<Button
android:id="@+id/btnStartProgress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Download File" />
1
要顯示通知:
NotificationManager notificationManager = (NotificationManager) mContext
.getSystemService(NOTIFICATION_SERVICE);
Notification updateComplete = new Notification();
updateComplete.icon = android.R.drawable.stat_notify_sync;
updateComplete.tickerText = mContext
.getText(R.string.app_name);
updateComplete.when = System.currentTimeMillis();
Intent notificationIntent = new Intent(mContext,
MainActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(mContext, 0,
notificationIntent, 0);
String contentTitle = mContext.getText(R.string.app_name)
.toString();
String contentText;
contentText = mContext.getText(
R.string.yes).toString();
updateComplete.setLatestEventInfo(mContext, contentTitle,
contentText, contentIntent);
notificationManager.notify(progressBarStatus, updateComplete);
瞭解更多信息:
http://mobile.tutsplus.com/tutorials/android/android-fundamentals-status-bar-notifications/
相關問題
- 1. 如何在通知區域顯示進度條?
- 2. 通知區域的進度條未關閉,未啓動第二個進度條
- 3. 從AsynTask更新下載進度條到通知區域
- 4. 顯示進度條直到下一個活動被加載
- 5. 進度條加載活動或加載按鈕進度
- 6. 隱藏通知區域中的進度條時,100%完成
- 7. 點擊通知區域沒有顯示消息在活動
- 8. 如何在通知區域後面顯示Android活動
- 9. 下載管理器進度在通知區域中不可見
- 10. 加載時顯示進度條
- 11. 顯示進度條在加載列表
- 12. 數據加載時顯示進度條
- 13. 顯示下載進度條
- 14. 在Android中加載另一個活動時無法顯示進度條
- 15. 通知中的進度條
- 16. 顯示進度對話框,直到新的活動加載
- 17. AJAX進度條顯示頁面加載的進度百分比
- 18. 如何在顯示活動前顯示進度條
- 19. 進度條(循環)顯示雖然顯示活動
- 20. 通知顯示,但不加載下一個活動
- 21. 在通知區域顯示一個winform
- 22. 顯示進度條動畫
- 23. JTable加載值的變化,加載時顯示進度條
- 24. 在通知中顯示進度
- 25. 在$ http post中顯示進度通知?
- 26. 顯示區域的CSS滾動條
- 27. 如何在科爾多瓦的通知區域顯示通知?
- 28. C2DM在gmail的通知區域顯示通知
- 29. 在通知欄和活動中的多個下載顯示
- 30. 在科爾多瓦本地通知中顯示進度條
謝謝;我需要把進度條放在通知區域(狀態欄) – Saeed
歡迎,然後你可以使用這段代碼來顯示。 –
您是否計劃在通知區域顯示progressbar,而沒有progrssDialog? – 2012-11-17 07:11:45