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萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章