Different text for the wear device and the mobile device

僤鯓⒐⒋嵵緔 提交于 2019-11-27 08:19:04

问题


Is it possible to have a notification that shows a different text (content title and content text) in the Android wear device and in the mobile device?


回答1:


Not at the moment. However, you can achieve this effect in the following way:

  1. post a notification on the phone with setLocalOnly(true)
  2. post a DataItem using a DataAPI that describes the notification and changed text
  3. when the wearable receives the DataItem, post the notification with different text, again setting setLocalOnly(true)
  4. on each notification alse call setDeleteIntent so you know, when there are dismissed
  5. when on of the notifications gets dismissed, delte the DataItem from point 2.
  6. when the DataItem gets deleted, you will receive a callback; delete the remaining notification

There might be some corner cases here I don't see immediately, but the general approach should allow you to achieve what you want.




回答2:


Yes, it's possible now with little tricky and bug on Android wear which help's us. More Over this trick doesn't need Android wear API, just a normal Notification with RemoteViews is enough.

NotificationCompat.Builder mBuilder;
    mBuilder = new NotificationCompat.Builder(context)
    .setSmallIcon(R.drawable.ic_launcher)
    .setAutoCancel(true)
    .setContentText("This msg won't display in your phone, only on wear you can see.")
    .setContentTitle("Hello")

    .setContentIntent(
            PendingIntent.getActivity(context, 10,intent,PendingIntent.FLAG_ONE_SHOT));

    NotificationManager mNM = (NotificationManager) context
            .getSystemService(Context.NOTIFICATION_SERVICE);
    Notification notification = mBuilder.build();

    RemoteViews contentView = new RemoteViews(context.getPackageName(),
    R.layout.notification_layout);

    contentView.setTextViewText(R.id.noti_text,"This message won't display in your wear device, only on phone you can see.");
    contentView.setImageViewResource(R.id.noti_image,R.drawable.ic_launcher);
    notification.contentView = contentView;

    notification.flags |= Notification.FLAG_AUTO_CANCEL;

    mNM.notify(50, notification);

Now run the app on your device and check the notification on both watch and phone, the content inside the RemoteViews won't display in your watch but on phone it will display and if you remove the .setContentTitle() & .setContentText(), then the RemoteViews content will be displayed on both watch and phone too.




回答3:


Actually you can achieve this using

.setGroup(GROUP_KEY) .setGroupSummary(true)

On your phone notification. Then create a notification with the data that you want to show on the watch and set

.setGroup(GROUP_KEY)

to the same group that your phone notification. This is used to show stack notifications but if you use it with only one then it does the trick.

Complete documentation: Stacking Notifications



来源:https://stackoverflow.com/questions/27578714/different-text-for-the-wear-device-and-the-mobile-device

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!