Reputation: 2885
I've made a customer status bar notification according to the Android Developer's Guide. I wanted to create a custom expanded view since the default would cut off my content. I was able to mock up something similar to the default view, but my content gets cutoff as it's height goes beyond the height of the notification area.
Is there a way to expand the height of the notification expanded view for my status bar notification via the layout or some means when declaring the notification (in a service in this case)?
Upvotes: 4
Views: 2335
Reputation: 26925
Is there a way to expand the height of the notification expanded view for my status bar notification via the layout or some means when declaring the notification (in a service in this case)?
Nope, sorry.
From Android developers group, Dianne Hackborn says:
No the height is deliberately restricted.
Upvotes: 4