How to change size of title's text on Action Bar?

后端 未结 6 1222
攒了一身酷
攒了一身酷 2020-11-28 13:20

There is an ActionBar on each Android 4.0 application, and it got a title. I need to make this size less. But I don\'t understand how I can do it, because

6条回答
  •  时光取名叫无心
    2020-11-28 13:55

    The text's size in Android ActionBar is standard.

    Since ICS, Android now develops a standard so that applications will (hopefully) follow the same UI guidelines and design principles.

    http://developer.android.com/guide/practices/ui_guidelines/index.html

    This is why you can't change it.

    However, if you still want to do so, you could use a custom Theme or maybe implement ActionBar (a fork) and modify its sources: https://github.com/johannilsson/android-actionbar to get maximum control.

提交回复
热议问题