I want to change background color of
textView
with match parent instead of text length in spannable string in android side navigation menu... How can I achieve this? Below is my code:
MenuItem quickAction = menu.findItem(R.id.quickAction);
SpannableString s = new SpannableString(quickAction.getTitle());
BackgroundColorSpan span = new BackgroundColorSpan(Color.YELLOW);
//for background
s.setSpan(span, 0, s.length(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
//for background