标签: java android android-button
假设我有一个按钮。我将如何以编程方式编辑其属性?我不想在布局中使用XML代码更改属性。
答案 0 :(得分:4)
声明您的Button变量:
Button button; ...
然后在onCreate()方法中编写以下内容:
button = (Button) findViewById(R.id.<Your buttons ID>); button.setHeight(50);
请在提问前先做研究。