I have a drawable-xhdpi-v11 folder containing a 48x48 icon which is used in my Notification:
Notification notification = new Notification(R.drawable.ic_not_logo, null, now);
I noticed on my Galaxy Nexus running JB, the icon is shrunk to 36x36, making it blurry. Why does the documentation ask for a 48x48 if it wants a 36x36? Am I missing something? Is there a way to make my notification icons pixel perfect?
EDIT: Here is a related post Android status bar expects icons of size 25x25dp while guidelines recommend 32x32dp. Who is wrong? The answers in this post do not explain why it still asks for a 48x48 sized icon and down scales it to 36x36.