I need to Set MenuItem text align center inside Navigation view android searching for that from past one week please someone help
Asked
Active
Viewed 2,198 times
1 Answers
1
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);

Jhaman Das
- 1,094
- 13
- 28
-
SpannableString s = new SpannableString(settingsItemTitle); what is settingsitem title – Murali Apr 20 '16 at 14:01
-
@Murali: the String used for this item.i.e. title as defined `android:title` – Rowan Jun 24 '16 at 08:14