Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1.  
  2. // for example : R.string.span_title = "abcdefg"
  3. SpannableString title = new SpannableString(getResources().getString(R.string.span_title));
  4. title.setSpan(new StyleSpan(Typeface.BOLD), 5, title.length(), 0);
  5.  
  6. ((TextView) findViewById(R.id.tvTitle)).setText(title);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement