如何在 Android Studio 中更改字体大小?
How can I change the font size in Android Studio?
我不想更改 Android Studio 本身的字体大小,而是我正在开发的应用程序的字体大小。我找到的所有搜索结果都在谈论用户界面或放大。
我正在做一个井字游戏初学者项目,按钮文本总是那么小。关于如何增加它的任何提示?
这是它在 xml 文件中的部分:
<Button
android:id="@+id/button_0"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
/>
非常感谢任何提供帮助的人
将android:textSize
属性加到Button
中,例如:
<Button
android:id="@+id/button_0"
android:layout_width="0dp"
android:textSize="20sp"
android:layout_height="match_parent"
android:layout_weight="1"
/>
https://developer.android.com/reference/android/widget/TextView#attr_android:textSize
一种方法是更改 XML 文件中的 textSize 属性。另一种方式是在节目中提及。
Button btn = findViewById(R.id.button_0);
btn.setTextSize(20.0f);
其中 btn 是按钮的名称。
注意:setTextSize()方法中提到的大小必须是浮点数
我不想更改 Android Studio 本身的字体大小,而是我正在开发的应用程序的字体大小。我找到的所有搜索结果都在谈论用户界面或放大。
我正在做一个井字游戏初学者项目,按钮文本总是那么小。关于如何增加它的任何提示?
这是它在 xml 文件中的部分:
<Button
android:id="@+id/button_0"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
/>
非常感谢任何提供帮助的人
将android:textSize
属性加到Button
中,例如:
<Button
android:id="@+id/button_0"
android:layout_width="0dp"
android:textSize="20sp"
android:layout_height="match_parent"
android:layout_weight="1"
/>
https://developer.android.com/reference/android/widget/TextView#attr_android:textSize
一种方法是更改 XML 文件中的 textSize 属性。另一种方式是在节目中提及。
Button btn = findViewById(R.id.button_0);
btn.setTextSize(20.0f);
其中 btn 是按钮的名称。
注意:setTextSize()方法中提到的大小必须是浮点数