如何编辑组件的属性?

时间:2016-09-28 18:13:38

标签: java android android-button

假设我有一个按钮。我将如何以编程方式编辑其属性?我不想在布局中使用XML代码更改属性。

1 个答案:

答案 0 :(得分:4)

声明您的Button变量:

Button button;
...

然后在onCreate()方法中编写以下内容:

button = (Button) findViewById(R.id.<Your buttons ID>);
button.setHeight(50);

请在提问前先做研究。