Possible Duplicate:
How to increase the size of the title bar in an Android application?
How can I increase the size of the title bar in Android?
I created a custom layout R.layout.mytitle and onCreate() I call:
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.mytitle);
but in my layout, no matter what height I use, it seems to ignore it, and uses a default height.
How can I change this?