在Android中,為TextView選擇字體可以通過以下幾種方法實現(xiàn):
在TextView的XML布局文件中,可以使用android:fontFamily
屬性來設置字體。首先,需要在res/font
目錄下添加字體文件(如.ttf
或.otf
格式)。如果沒有該目錄,請創(chuàng)建一個。然后,在TextView中引用字體文件,如下所示:
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello, World!"
android:fontFamily="@font/your_font_file_name" />
將your_font_file_name
替換為實際的字體文件名(不帶擴展名)。
在Activity或Fragment的Java或Kotlin代碼中,可以使用setTypeface()
方法為TextView設置字體。首先,需要在res/font
目錄下添加字體文件。然后,在代碼中引用字體文件,如下所示:
Java:
import android.graphics.Typeface;
// ...
TextView textView = findViewById(R.id.textView);
Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/your_font_file_name.ttf");
textView.setTypeface(typeface);
Kotlin:
import android.graphics.Typeface
// ...
val textView = findViewById<TextView>(R.id.textView)
val typeface = Typeface.createFromAsset(assets, "fonts/your_font_file_name.ttf")
textView.typeface = typeface
將your_font_file_name
替換為實際的字體文件名(不帶擴展名)。注意,fonts
目錄應位于assets
目錄下。
以上就是在Android中為TextView選擇字體的兩種方法。