54

我似乎无法创建一个在不闪烁应用程序图标的情况下更新的 Android Wear 通知,而相同的代码在 Android 手机上运行良好。

大多数引用的解决方案都在讨论更新相同的通知、使用setAlertOnlyOnce、保持ID何时保持相同。但是,无论我做什么,每次更新通知时它都会闪烁(最值得注意的是应用程序图标)。

正如这里所建议的Android Wear: Timer like notification card on wear device你可以使用setHintHideIcon(true)隐藏应用程序图标,它隐藏了闪烁的部分,但是在 Android Wear Notifications 的有限世界中,应用程序图标在应用程序的品牌化。

如果你想要一个计时器,你可以使用.setUsesChronometer(true)并让系统更新完美运行的计时器。不幸的是,如果您想更新时间以外的其他内容(例如收到的步骤或消息计数),在我看来,您不走运。

您可以在下面找到作为手机应用程序运行时运行良好的代码,但作为可穿戴应用程序运行时会闪烁。

下面的注释行表明通知仍然闪烁(当在可穿戴设备上运行时,而不是在手机上运行时)在可穿戴设备上发布未更改的通知时通知仍然闪烁。取消注释以再次更新通知。

mNotification = buildNotification(WearMainActivity.this);

因此我的问题是,是否有人有任何进一步的想法,我们可以探索以防止通知闪烁,或者我们是否可以将其写为 Android Wear 错误?

public class WearMainActivity extends Activity {

    public final int NOTIFICATION_ID= 1;
    public Notification mNotification;
    public int count;
    public long when;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        count = 0;
        when = System.currentTimeMillis();
        mNotification = buildNotification(WearMainActivity.this);
        postDelayedHandler();
        finish();
    }

    private void postDelayedHandler(){

        new Handler().postDelayed(new Runnable() {
            public void run() {
                count++;
                mNotification = buildNotification(WearMainActivity.this);
                NotificationManager notifyMgr = ((NotificationManager) getSystemService(NOTIFICATION_SERVICE));
                notifyMgr.notify(NOTIFICATION_ID, mNotification);
                postDelayedHandler();
            }
        }, 1000L);
    }

    private Notification buildNotification(Context context){
        return new Notification.Builder(context)
                .setSmallIcon(R.drawable.ic_launcher)
                .setContentTitle(context.getString(R.string.app_name))
                .setContentText("Count: "+count)
                .setWhen(when)
//                .setOngoing(true) //Don't do this, adds "Mute app" action
                .setOnlyAlertOnce(true)
                .setPriority(Notification.PRIORITY_MAX)
                .extend(new Notification.WearableExtender()
//                        .setHintHideIcon(true) //Hides the icon, so kinda hides the blink
                )
                .build();
    }
}

测试设备:
可穿戴设备:Moto 360 (4.4W2) Wear Emulator (5.0.1)
手机:Galaxy Nexus (4.3) 和 Nexus 5 (5.0.0)

发生:作为可穿戴应用程序运行或作为可穿戴设备上显示的电话通知时。在手机上完美运行。

参考问题:
如何避免在更改按钮时闪烁通知更新
悄悄更新正在进行的通知
如何正确更新通知发布 api 11?

4

2 回答 2

1

代替:

NotificationManager notifyMgr = 
    ((NotificationManager)getSystemService(NOTIFICATION_SERVICE));

至:

NotificationManagerCompat notifyMgr =
    NotificationManagerCompat.from(this);

更多信息:https ://developer.android.com/training/wearables/notifications/creating.html

你也做了很多更新。每次更新都通过蓝牙发送到 Wear。您应该为 Android Wear 创建自安装应用程序。发送延迟约3秒。

于 2015-07-14T13:20:56.610 回答
1

不久前我在使用 Android Wear 时解决了这个问题,但不幸的是代码消失了。无论如何,我所做的不是每次我想更新它时都构建通知,我只是在第一次创建通知时标记它,然后我用 检索它TAG并直接对该对象进行更改。这完全停止了闪烁......

于 2015-09-25T07:21:05.237 回答