TextView bold via xml file?

后端 未结 6 1051
无人共我
无人共我 2021-01-30 10:05

Is there a way to bold the text in a TextView via XML?

 ??

         


        
6条回答
  •  面向向阳花
    2021-01-30 10:40

    Just you need to use 
    
    //for bold
    android:textStyle="bold"
    
    //for italic
    android:textStyle="italic"
    
    //for normal
    android:textStyle="normal"
    
    
    

提交回复
热议问题