0

ウォッチフェイスの作成を開始しました。ピーク カードをカスタム イメージに変更したいと考えています。画像では、変更したい部分の周りに赤い円が表示されます。この画像のように、ユーザーが通知を持っていることをユーザーが知るように、画面の下部に人をポップアップさせたいと思います。壁がウォッチフェイスの底であると考えてください。

これは可能ですか?

お知らせ下さい、

ありがとう!

4

1 に答える 1

0

BigPictureStyle知る限り、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);

アクティビティでレイアウトを作成し、通知内に埋め込むことができます: https://developer.android.com/training/wearables/apps/layouts.html#CustomNotifications

于 2016-12-08T14:35:43.177 に答える