-1
A
答えて
0
これは私がそれを行うだろうかである、ちょうどNotificationCompat.Builderを使用します。
// create RemoteViews
final RemoteViews remoteViews = new RemoteViews(getPackageName(), R.layout.remoteview_notification);
remoteViews.setImageViewResource(R.id.remoteview_notification_icon, R.mipmap.future_studio_launcher);
remoteViews.setTextViewText(R.id.remoteview_notification_headline, "Headline");
remoteViews.setTextViewText(R.id.remoteview_notification_short_message, "Short Message");
remoteViews.setTextColor(R.id.remoteview_notification_headline, getResources().getColor(android.R.color.black));
remoteViews.setTextColor(R.id.remoteview_notification_short_message, getResources().getColor(android.R.color.black));
// build notification
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(UsageExampleTargetsAndRemoteViews.this)
.setSmallIcon(R.mipmap.future_studio_launcher)
.setContentTitle("Content Title")
.setContentText("Content Text")
.setContent(remoteViews)
.setPriority(NotificationCompat.PRIORITY_MIN);
final Notification notification = mBuilder.build();
// set big content view for newer androids
if (android.os.Build.VERSION.SDK_INT >= 16) {
notification.bigContentView = remoteViews;
}
NotificationManager mNotificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(NOTIFICATION_ID, notification);
関連する問題
- 1. 通知バーに日付で通知を追加する
- 2. ローカル通知の火災の日付バックアップ
- 3. 指定した日付のスケジュール通知
- 4. iTextSharp日付 - PdfPCellのちょうど日付までの時間
- 5. どちらを使うのがいいですか?フラッシュ[:通知] vs:通知?
- 6. 通知サービスをバックグラウンドでstackoverflowアプリケーションのように保ちます
- 7. マルチスレッド待ち()通知()
- 8. 特定の日付にアラーム/通知を表示する
- 9. Android:特定の日付に通知メッセージをスケジュールする
- 10. 特定の日付にAndroidの通知を
- 11. Android通知「毎日のおはよう」
- 12. 特定の日付と時刻の通知をスケジュールする
- 13. Ionic 2で文字列の日付を通知の日付形式に変換する方法
- 14. Androidの毎日の通知
- 15. 特定の日付の後3日ごとに通知メールを送信
- 16. このような日付の指定された配列のうち、日付
- 17. Android - 毎日の通知
- 18. 日時の値をちょうど日付と比較する
- 19. スケジュール通知毎日
- 20. どのように特定の日付で通知をgenroidにするにはandroidのdatepickerなし
- 21. すぐに到着する通知の日付を取得するには?
- 22. 完了したイベント通知 - 日付のタイムゾーン
- 23. あなたがユーザーを選択した日付のアンドロイド通知
- 24. 通知メールエントリは日付ボックスでは動作しません値
- 25. 通知付きのAndroidサービス
- 26. Swift 3の特定の日付に通知を送信する方法
- 27. Android:DownloadManager - 通知付箋
- 28. IBM DB2 iSeriesのNode.jsでジュリアン日付を通常の日付に変換する
- 29. 1日、3日、7日、28日のような特定の日に通知を設定する方法
- 30. 特定の日付と時刻にgcm通知を送信する方法