如何在不更改按钮大小的情况下增加Button中的文本大小。换句话说,我想在整个Button表面中显示文本。我希望在java代码中不能在XML文件中实现这一点。
答案 0 :(得分:0)
在java类中,您可以按照以下方式执行此操作
Button bt = new Button(this);
bt.setTextSize(12);
和xml
<Button
android:textSize="10sp"/>
注意:文字的推荐尺寸类型为&#34; sp&#34;用于缩放像素。
答案 1 :(得分:0)
Button button = new Button(this);
// set the text size in the second parameter. I have set 20 for the sake of your understanding.
button.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20);
让我知道它是否有效。