2
私はコード
final Notification notifyDetails = new NotificationCompat.Builder(context)
.setContentTitle(mTitle)
.setContentText(mDesc)
.setSmallIcon(R.mipmap.ic_launcher)
.setTicker(mDesc)
.setStyle(new NotificationCompat.BigPictureStyle()
.bigPicture(myBitmap)
.setSummaryText(mDesc))
.setContentIntent(nIntent)
.addAction(R.drawable.share, "Share", nIntent)
.build();
mNotificationManager.notify(SIMPLE_NOTFICATION_ID, notifyDetails);
が、イムのような通知を表示したい
?私はGoogleを持っている、私は解決を得るdidnt。誰でもこれに取り組んでください、あなたのアイデアを共有してください。
ありがとうございます。
あなたが達成したい違いは何ですか?でなければなりませんのでご注意ください – Vyacheslav
コンテンツのテキストが下部に表示され、共有操作が上部になり、背景に白が表示されません。 –
http://stackoverflow.com/a/16168704/1979882これを読んでください。カスタムビューを使用する必要があります – Vyacheslav