The system dynamically adjusts the application content area based on the status bar window's size. I would guess that you have changed the size of the content of the status bar, but not the status bar itself. (Another hint for this: the status bar window is on top of the application, so the fact that its content is cut off indicates the window is not large enough.)
Make sure you also change status_bar_height in dimens.xml:
<!-- Height of the status bar -->
<dimen name="status_bar_height">25dip</dimen>
--
Dianne Hackborn
Android framework engineer
hac...@android.comNote: please don't send private questions to me, as I don't have time to provide private support, and so won't reply to such e-mails. All such questions should be posted on public forums, where I and others can see and answer them.