Android加粗TextView字体

在xml文件中,直接在TextView里面加入android:textStyle="bold"即可。

完整代码如下:

 <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"
        android:gravity="center"
        android:text="Ace"
        android:textSize="15sp"
        android:textStyle="bold" />
发布了142 篇原创文章 · 获赞 147 · 访问量 48万+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章