1. 程式人生 > 其它 >Android TextView textStyle 設定字型樣式

Android TextView textStyle 設定字型樣式

技術標籤:Android 知識點記錄textStyle

textStyle 是設定文字字型樣式,

Android 提供了三個樣式

1normal 正常字型

2bold 粗體

3italic 斜體

1 xml 中使用如下

    <TextView
            android:id="@+id/text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Android textStyle效果展示"
            android:layout_marginTop="10dp"
            android:textSize="25sp"
            android:textStyle="normal" />


    <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Android textStyle效果展示"
            android:layout_marginTop="10dp"
            android:textSize="25sp"
            android:textStyle="bold" />

    <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Android textStyle效果展示"
            android:layout_marginTop="10dp"
            android:textSize="25sp"
            android:textStyle="italic" />

效果圖如下

如果在java 程式碼中設定字型樣式需要藉助setTypeface ,(注意 , setTypeface 是設定什麼字型的, textStyle 是設定字型的樣式的,)

1 textView.setTypeface(null, Typeface.NORMAL); // 前面預設設定字型,就設定了null
2 textView.setTypeface(null, Typeface.BOLD);
3 textView.setTypeface(null, Typeface.ITALIC);