0

我已经开始创建表盘了。我希望将偷看卡更改为自定义图像。在图像中,您会在我希望更改的部分周围看到一个红色圆圈。我想让一个人在屏幕底部弹出,以便用户知道他有一个通知,就像这里的这张图片一样。试想一下,墙壁是表盘的底部。

这可能吗?

让我知道,

谢谢!

4

1 回答 1

0

BigPictureStyleAFAIK,您可以将样式应用于通知,BigTextStyleIndexStyle例如

这是使用 BigTextStyle 的示例:

// Specify the 'big view' content to display the long
// event description that may not fit the normal content text.
BigTextStyle bigStyle = new NotificationCompat.BigTextStyle();
bigStyle.bigText(eventDescription);

NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
    .setSmallIcon(R.drawable.ic_event)
    .setLargeIcon(BitmapFractory.decodeResource(getResources(), R.drawable.notif_background))
    .setContentTitle(eventTitle)
    .setContentText(eventLocation)
    .setContentIntent(viewPendingIntent)
    .addAction(R.drawable.ic_map, getString(R.string.map), mapPendingIntent)
    .setStyle(bigStyle);

您可以在 Activity 中创建布局并将其嵌入到通知中:https ://developer.android.com/training/wearables/apps/layouts.html#CustomNotifications

于 2016-12-08T14:35:43.177 回答