通知バーにプログレスバーを入れたいのですが。このアイデアは、プログラムがファイルをサーバーにアップロードしている間、進行状況バーを表示することです。それ以外はすべて問題ありませんが、通知内の進行状況バーを更新する方法がわかりません。誰かが遊ぶパターンを知っていますか?つまり、サービスやアクティビティなどで、進行状況バーを更新する必要がある場所です。
コードがどのように見えるかわからないので、何を変更する必要があるのかわかりませんが、ドキュメントを検索しました。 Notifications 、 ProgressBars 、および RemoteViews でいくつかのものを見つけました。
具体的には、RemoveViewで、プログレスバーを更新できます。したがって、各リンクのサンプルコードのいくつかを組み合わせると、次のようになります。
public class MyActivity extends Activity {
private static final int PROGRESS = 0x1;
private static final int MAX_PROGRESS = 100;
private int mProgressStatus = 0;
private Handler mHandler = new Handler();
protected void onCreate(Bundle icicle) {
super.onCreate(icicle);
//define Notification
//...
RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.custom_notification_layout);
contentView.setProgressBar(R.id.progress_bar, MAX_PROGRESS, mProgressStatus, false);
notification.contentView = contentView;
// Start file upload in a background thread
new Thread(new Runnable() {
public void run() {
while (mProgressStatus < MAX_PROGRESS) {
mProgressStatus = doWork();
// Update the progress bar
mHandler.post(new Runnable() {
public void run() {
contentView.setProgressBar(R.id.progress_bar, MAX_PROGRESS, mProgressStatus, false);
}
});
}
}
}).start();
}
}
RemoteViewからProgressBarを削除するには、次のコードを使用します:-
remoteViews.setViewVisibility(R.id.progressBar, View.INVISIBLE);
View.GONE
を使用することもできますが、これによりAndroidが空のスペースを埋めます。