双推通知图标

时间:2016-11-25 11:07:41

标签: android push-notification icons

我根据sdk> =棒棒糖指南设计了我的Android推送通知图标。 我的手机顶部的通知状态图标是完美的...设置为smallicon 我已将颜色图标指定为大图,以显示消息。但是这个lageicon在右下角显示了一个小图标,如附件所示(图片仅供参考)enter image description here 如何删除这个小图标??? 感谢帮助 Sohan kumar

1 个答案:

答案 0 :(得分:2)

在构建通知后使小图标不可见。下面的代码将帮助您:

int smallIconId = context.getResources().getIdentifier("right_icon", "id", android.R.class.getPackage().getName());
            if (smallIconId != 0) {
                notification.contentView.setViewVisibility(smallIconId, View.INVISIBLE);
                notification.bigContentView.setViewVisibility(smallIconId, View.INVISIBLE);
            }