如何自定义推送通知图标?

时间:2014-09-19 03:04:09

标签: android parse-platform

我正在使用ParsePush向我的Android用户发送通知。我想自定义操作栏中显示的通知图标。

目前正在显示应用启动器图标。但我想改变它并使用不同的图标进行通知。

3 个答案:

答案 0 :(得分:1)

使用重载函数

解决了这个问题
setDefaultPushCallback(Context context, Class<? extends Activity> cls, int icon)

答案 1 :(得分:0)

试试这个..

NotificationCompat.Builder mNotifyBuilder = new NotificationCompat.Builder( context).setSmallIcon(@android:drawable/btn_star) 

答案 2 :(得分:0)

NotificationCompat.Builder builder = new NotificationCompat.Builder(context)
            .setContentTitle(notificationTitle)
            .setContentText(notificationMessage)
            .setSmallIcon(R.drawable.YOUR_IMAGE)
            .setContentIntent(resultPendingIntent)
            .setAutoCancel(true)
            .setStyle(bigStyle);

    NotificationManager notificationmanager = (NotificationManager)context.getSystemService(context.NOTIFICATION_SERVICE);
    notificationmanager.notify(nofy_id, builder.build());