您好,登錄后才能下訂單哦!
在 Android 中,你可以通過修改 Button 的屬性來調整文字樣式
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="點擊我"
android:textSize="18sp"
android:textColor="@android:color/white"
android:textStyle="bold"
android:textAllCaps="false" />
在這個例子中,我們設置了文字大小(android:textSize
)、顏色(android:textColor
)、樣式(android:textStyle
)以及是否自動轉換為大寫(android:textAllCaps
)。
// Java
Button button = findViewById(R.id.button);
button.setTextSize(TypedValue.COMPLEX_UNIT_SP, 18);
button.setTextColor(Color.WHITE);
button.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
button.setAllCaps(false);
// Kotlin
val button: Button = findViewById(R.id.button)
button.textSize = 18f
button.setTextColor(Color.WHITE)
button.typeface = Typeface.defaultFromStyle(Typeface.BOLD)
button.isAllCaps = false
在這個例子中,我們使用了類似的方法來設置 Button 的文字樣式。注意,在 Java 和 Kotlin 中,我們使用了不同的單位和方法來設置文字大小。
如果你想使用自定義字體,可以將字體文件(如 .ttf 或 .otf)放入項目的 assets/fonts
文件夾中,然后在代碼中設置:
// Java
Typeface customFont = Typeface.createFromAsset(getAssets(), "fonts/custom_font.ttf");
button.setTypeface(customFont);
// Kotlin
val customFont = Typeface.createFromAsset(assets, "fonts/custom_font.ttf")
button.typeface = customFont
這樣,你就可以根據需要調整 Android Button 的文字樣式了。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。