Padding between ActionBar's home icon and title

前端 未结 21 1632
名媛妹妹
名媛妹妹 2020-11-28 20:03

Does anybody know how to set padding between the ActionBar\'s home icon and the title?

21条回答
  •  無奈伤痛
    2020-11-28 20:35

    I also faced a similar issue, in my case I had to set titles dynamically on each activity depending on the content.

    So this worked for me.

    actionBar.setTitle("  " + yourActivityTitle);
    

    If all you want is the spacing, this is the easiest solution I could think of.

提交回复
热议问题