在Android中可以通過以下幾種方式設置字體樣式:
在xml布局文件中設置字體樣式:
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textStyle="bold"
android:textSize="18sp" />
通過代碼設置字體樣式:
TextView textView = findViewById(R.id.textView);
textView.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
使用自定義字體文件設置字體樣式:
首先,將字體文件(通常是.ttf格式)放置在assets
文件夾下。然后,通過以下方式設置字體樣式:
TextView textView = findViewById(R.id.textView);
Typeface typeface = Typeface.createFromAsset(getAssets(), "font.ttf");
textView.setTypeface(typeface);
以上是常見的幾種設置字體樣式的方式,可以根據具體需求選擇適合的方式。