I'm trying to find the exact dimensions of the big picture style image on Android notification. Indeed, I need those in order to compute images on-the-fly at the right dimensions to avoid too big downloads in my application.
I've made some tests and, for example, I can't take the width of the screen as the width of my image because the notification center does not fit entirely the screen on tablets.
Is there any way to get those dimensions as we do for the large icon with android.R.dimen.notification_large_icon_width
and android.R.dimen.notification_large_icon_height
?
Thanks