I have a button in my application. the text in the button goes as "Type: Location" something like that.

I'm wondering whether its possible to change the text on the button as "Type: Location"

i.e Bold the text partially on the button??

Thanks for yoru time in advance.

link|improve this question

feedback

5 Answers

up vote 0 down vote accepted

You can set it using Html.fromHtml() and give as a string, a string resource with HTML elements. Hope this helps!

link|improve this answer
feedback

Simply put your string in strings.xml and change it like this,

 <string name="hello"><b>Hello</b> World, fh!</string>

and set this text to your button like this

<Button
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    />
link|improve this answer
feedback

You can use basic markup directory in strings, e.g.

"<b>Type</b>: Location"

See Styling with HTML markup

link|improve this answer
feedback

Using spans:

SpannableStringBuilder builder = new SpannableStringBuilder("Type: your type here!");
StyleSpan boldStyle = new StyleSpan(Typeface.BOLD);
builder.setSpan(boldStyle, 0, 5, Spannable.SPAN_INCLUSIVE_INCLUSIVE);
((Button) findViewById(R.id.button)).setText(builder);
link|improve this answer
feedback

we have a more better choice like this :android:textStyle="bold" android api support bold

link|improve this answer
this will bold the whole text in the button :( – Mayu Mayooresan Sep 2 '11 at 10:54
I ask my master ,he say that Html.fromHtml is better and more easlier control. – Yang Li Sep 2 '11 at 10:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.