要調整Android TextView的樣式,您可以在XML布局文件中使用內置的屬性或者在Java/Kotlin代碼中使用setTypeface()
方法。這里有一些常見的屬性調整示例:
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="20sp" />
在Java/Kotlin代碼中:
TextView textView = findViewById(R.id.textView);
textView.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20);
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textColor="#FF0000" />
在Java/Kotlin代碼中:
TextView textView = findViewById(R.id.textView);
textView.setTextColor(Color.RED);
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textStyle="bold" />
在Java/Kotlin代碼中:
TextView textView = findViewById(R.id.textView);
textView.setTypeface(null, Typeface.BOLD);
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textWeight="bold" />
在Java/Kotlin代碼中:
TextView textView = findViewById(R.id.textView);
textView.setTypeface(null, Typeface.BOLD);
這些只是一些基本的樣式調整示例。您可以根據需要使用更多的屬性來調整TextView的外觀。