NotificationCompat.Builderは端末のPush通知を送る事ができる機能です。 setLargeIcon(Bitmap bitmap)というメソッドがあるのでそれを使って実装します。 AsyncTaskを使って画像URLをHTTPで取得し、 NotificationCompat.BuilderでBitmapを設定したPush通知を送信するクラスを書きます。 class SendNotificationBuilder extends AsyncTask<String, Void, Bitmap> { private String title; private String message; private String imageUrl; private Intent intent; public SendNotificationBuilder(Context conte