通知バーにプログレスバーを入れたいのですが。このアイデアは、プログラムがファイルをサーバーにアップロードしている間、進行状況バーを表示することです。それ以外はすべて問題ありませんが、通知内の進行状況バーを更新する方法がわかりません。誰かが遊ぶパターンを知っていますか?つまり、サービスやアクティビティなどで、プログレスバーを更新する必要がある場所です。
26484 次
3 に答える
17
あなたのコードがどのように見えるかわからないので、あなたが何を変更する必要があるのかわかりませんが、ドキュメントを検索しました。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();
}
}
于 2010-04-27T21:19:10.190 に答える
1
通知でカスタムビューを使用できます:
https ://developer.android.com/guide/topics/ui/notifiers/notifications.html#CustomExpandedView
于 2010-04-27T20:58:00.177 に答える
0
RemoteViewからProgressBarを削除するには、次のコードを使用します:-
remoteViews.setViewVisibility(R.id.progressBar, View.INVISIBLE);
使用することもできますView.GONE
が、それはアンドロイドが空のスペースを埋めるようにします。
于 2013-12-25T11:12:33.753 に答える