Align Center Menu Item text in android

后端 未结 3 776
轮回少年
轮回少年 2020-12-17 16:35

Using following code



        
3条回答
  •  无人及你
    2020-12-17 17:00

    You can center-align the menu items dynamically using SpannableString in your activity:

    int positionOfMenuItem = 0; //or any other postion
    MenuItem item = menu.getItem(positionOfMenuItem);
    SpannableString s = new SpannableString(settingsItemTitle);
    
    s.setSpan(new AlignmentSpan.Standard(Alignment.ALIGN_CENTER), 0, s.length(), 0);
    
    item.setTitle(s);
    

提交回复
热议问题