I have a simple notification, but the icon does not fill the whole part. I generated it through Android Asset and put each resolution in its respective folder in mipmap.
Android 4.1 Notification
Android5.0Notification
Notificationnoti=newNotification.Builder(MainActivity.this).setTicker("BPF Denúncia")
.setContentTitle("BPF Denúncia")
.setContentText("Há Uma Nova Denúncia Contra Você!")
.setSmallIcon(R.mipmap.notification)
.setContentIntent(pIntent).getNotification();
How do I resolve to fill in the entire Notification space?