0

I am working on Android/Java. I want to set the description text of a Radio button in which the text is bit longer. It has two headings and one content field. I just want to make the headings bold and not the content. And I want the code in pure java

Ganesh
  • 53
  • 1
  • 7

1 Answers1

2

try this line for radio button text

radioButtonObject.setText(Html.fromHtml("<b>Your heading</b>your contetn"));
Ali Ahmad
  • 1,351
  • 9
  • 11