0

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?

Community
  • 1
  • 1
Henley
  • 21,258
  • 32
  • 119
  • 207
  • 1
    http://stackoverflow.com/questions/6226538/how-to-increase-the-size-of-the-title-bar-in-an-android-application – sat Jul 17 '11 at 05:51

1 Answers1

1

You can change anything on the title bar basically.

Check this out.

A nice supplement to the comments given already.

Kris
  • 2,100
  • 5
  • 31
  • 50