Создайте custom Notification
и поместите что-то подобное в ваш файл messages_layout.xml:
<ProgressBar
android:layout_width="fill_parent"
android:layout_height="15dp"
android:id="@+id/notificationLoadingBar"
android:progressDrawable="@android:drawable/progress_horizontal"
android:indeterminate="false"
android:indeterminateOnly="false" />
Сохраните ссылку на ваш Notification
(сделайте его глобальным) и установите прогресс, используя API RemoteView
.
Пример кода:
mNotification.contentView.setProgressBar(R.id.notificationLoadingBar,
max, progress, false);