新的NotificationCompat.Builder(Context)-如何从URL设置setLargeIcon()

时间:2019-03-21 00:48:56

标签: android notifications

正在尝试.setLargeIcon(getBitmapFromUrl(url),但没有设置。

    public void showSmallNotification(String title, String message, String url, Intent intent) {
    Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
    PendingIntent resultPendingIntent =
            PendingIntent.getActivity(mCtx,ID_SMALL_NOTIFICATION,intent,
                    PendingIntent.FLAG_UPDATE_CURRENT
            );
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(mCtx);

    Notification notification = mBuilder.setSmallIcon(R.drawable.ic_logo_small).setTicker(title).setWhen(0)
            .setAutoCancel(true)
            .setContentIntent(resultPendingIntent)
            .setContentTitle(title)
            .setSmallIcon(R.drawable.ic_logo_small)
            .setLargeIcon(getBitmapFromURL(url))
            .setContentText(message)
            .setPriority(NotificationCompat.PRIORITY_HIGH)
            .setSound(defaultSoundUri)
            .build();

    notification.flags |= Notification.FLAG_AUTO_CANCEL;

    NotificationManager notificationManager = (NotificationManager) mCtx.getSystemService(Context.NOTIFICATION_SERVICE);
    notificationManager.notify(ID_SMALL_NOTIFICATION, notification);
}

在这里我将图像从url转换为位图

//The method will return Bitmap from an image URL
private Bitmap getBitmapFromURL(String strURL) {
    try {
        URL url = new URL(strURL);
        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
        connection.setDoInput(true);
        connection.connect();
        InputStream input = connection.getInputStream();
        Bitmap myBitmap = BitmapFactory.decodeStream(input);
        return myBitmap;
    } catch (IOException e) {
        e.printStackTrace();
        return null;
    }

基本上可以滑动图像。太棒了 无论如何,有一点帮助,所以我的通知者将像Twitter和instagram一样简单而酷。 谢谢。

UPDATED: .setLargeIcon(BitmapFactory.decodeResource(mCtx.getResources(), R.drawable.ic_logo_small)) works but url doesn't.

但是我要设置的图像在线(mysql)

2 个答案:

答案 0 :(得分:0)

您应在致电setLargeIcon

之前下载图像。

您可以使用AsyncTask下载图像:

public class DownloadImageAndShowNotification extends AsyncTask<String, Void, Bitmap> {

    private Context mContext;
    private String mUrl;

    DownloadImageAndShowNotification(Context context, String url) {
        super();
        this.mContext = context;
        this.mUrl = url;
    }

    @Override
    protected Bitmap doInBackground(String... params) {
        InputStream in;
        try {
            URL url = new URL(mUrl);
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            connection.setDoInput(true);
            connection.connect();
            in = connection.getInputStream();
            return BitmapFactory.decodeStream(in);
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }

    @Override
    protected void onPostExecute(Bitmap result) {
        super.onPostExecute(result);
        // Build your notification with the bitmap
    }
}

答案 1 :(得分:0)

如果您使用Glide,则可以这样下载

GlideApp.with(this).asBitmap().skipMemoryCache(true).load(url).into(150, 150).get()

,并且必须在下载图像后设置通知,