2016-12-07 9 views
0

私はウォッチフェイスの作成を開始しました。 peek cardをカスタム画像に変更したいと思います。画像では、変更したい部分の周りに赤い円が表示されます。私は画面の一番下に人をポップアップさせたいので、ここにはimageのような通知があります。ウォールフェイスの底に壁があると思ってください。Android Wear:ピークカードの外観を変更できますか?

これは可能ですか?

お知らせください。

ありがとうございました!

+0

はい、これはおそらく可能です。具体的な回答を得るために質問を洗練してください。 – David

答えて

0

AFAIKでは、通知にスタイルを適用することができます(BigPictureStyle, BigTextStyle or IndexStyleなど)。ここで

は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

+0

これは私が探しているものではありません。赤で囲まれたプレビューピクチャーカードを別のイメージに置き換えたいと思います。この回答はプレビューピクチャカードではなく通知のビッグスタイルを変更しただけです。 –

関連する問題