Android Text-view.
Is there any way to change some of the character displayed in a TextView as bold as shown below?

Android Text-view.
Is there any way to change some of the character displayed in a TextView as bold as shown below?

 
    
     
    
    You can try the following
yourTextView.setText(Html.fromHtml("Here you write html formatted text"));
 
    
    Try like
textView.setText(Html.fromHtml("Text" + "<b>" + View + "</b>"));
 
    
    you can take two textview and display your text one is in bold and other is without any effect simple solution.
