12

我对 Android 还是很陌生,我正在尝试改进通知的进度条以使其更流畅,而不是对我的 Pebble 进行一百万次更新并以“正确的方式”进行操作。当我使用它时,此代码“正常”工作,通知绘制并且进度条按预期完成。

当我将 Pebble 手表设置为接受应用程序的通知时,这对我来说成了一个问题。这会导致每张上传的图像振动约 50 次,具体取决于上传速度的快慢。

作为一个初学者,我认为我做这一切都是错误的,并且有一种更好的方法来做我想做的事情。

我的通知进度条更新为以下代码:

private int upload_progress;
private Long time_previous_progress = Calendar.getInstance().getTimeInMillis();

protected void onProgressUpdate(Integer... progress) {
    Long time_now = Calendar.getInstance().getTimeInMillis();
    if(
       ((time_now - time_previous_progress) < 55) // 55ms minimum delay
       || (progress[0] < 0 && progress[0] > 100)  // progress >0 && <100
       || progress[0].equals(upload_progress)     // progress changed
       || ! App.getStatus()                       // watcher is running
       )
    {
        return;
    }
    time_previous_progress = time_now;
    upload_progress = progress[0];
    int upload_counter = getUploadCounter();
    int upload_total = db.getReadyImagesCount();
    NotificationHandler.notify(context, upload_progress, upload_counter, (upload_total + upload_counter));
}

然后使用以下代码生成通知:

public static int notify(Context context, Integer progress, Integer upload_count, Integer upload_total)
{
    Bitmap bm = BitmapFactory.decodeResource(context.getResources(), R.drawable.ic_launcher);
    String notif_title = context.getResources().getString(R.string.instant_upload_title);

    String notif_progress = context.getResources().getString(R.string.instant_upload_progress);
    String notif_ticker = String.format(notif_progress, upload_count, upload_total);
    String notif_msg = String.format(notif_progress, upload_count, upload_total);

    Intent intent_swipe = new Intent(context, NotifyReceiver.class);
    intent_swipe.setAction("notification_cancelled");
    PendingIntent pendingIntent_swipe = PendingIntent.getBroadcast(context, 0, intent_swipe, PendingIntent.FLAG_CANCEL_CURRENT);

    Intent intent_click = new Intent(context, Settings.class);
    intent_click.putExtra("notification_clicked", true);
    PendingIntent pendingIntent_click = PendingIntent.getActivity(context, 0, intent_click, PendingIntent.FLAG_CANCEL_CURRENT);

    int pro_max = 100;
    int pro_cur = 0;
    if(progress < 100)
    {
        pro_cur = progress;
    }else{
        pro_cur = pro_max = 0;
    }

    //new NotificationCompat.Builder(context)
    NotificationCompat.Builder builder = new NotificationCompat.Builder(context) //PixelRelayApplication.getNotificationBuilder()
        .setTicker(notif_ticker)
        .setContentTitle(notif_title)
        .setContentText(notif_msg)
        .setNumber(upload_count)
        .setSmallIcon(R.drawable.ic_launcher)
        .setLargeIcon(bm)
        .setContentIntent(pendingIntent_click)
        .setDeleteIntent(pendingIntent_swipe)
        .setAutoCancel(true)
        .setOngoing(true)
        .setWhen(Calendar.getInstance().getTimeInMillis())
        .setProgress(pro_max, pro_cur, false);

    Notification notification = builder.build();

    // Put the auto cancel notification flag
    notification.flags |= Notification.FLAG_AUTO_CANCEL | Notification.FLAG_ONLY_ALERT_ONCE;
    NotificationManager notificationManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
    notificationManager.notify(NOTIFY_ME_ID, notification);
    return NOTIFY_ME_ID;
}
4

3 回答 3

10

You can use the open source code that is working properly for the idea you have in mind accessing it through Github: Progress Watch - A progress bar watchface for pebble. In case you decide to reuse the code, my suggestions are:

  • give the appropriate credit
  • inform the author if you still find something could be improved
  • if you add some new feature, create a fork and submit a patch
于 2013-12-25T22:05:36.273 回答
6

我通过在第一次通知后设置正在进行的标志来解决这个问题。

因此,重用构建器,并在发送第一个通知后,更新构建器,以便它创建持续的通知:

builder.setOngoing(true);

当然这也意味着更新的通知会变成持续的,http://developer.android.com/reference/android/app/Notification.Builder.html#setOngoing(boolean)

于 2015-12-16T13:22:27.963 回答
0

更新进度的行为是正确的。一旦有任何变化,它应该立即更新。

但是您应该只更新 UI 部分(如进度条更新)。

如果您使用振动来通知而不是使用振动。

于 2013-12-25T19:30:33.643 回答