如何编辑组件的属性?
How do I edit properties of components?
假设我有一个按钮。我将如何以编程方式编辑其属性?我不想在布局中使用 XML 代码更改属性。
声明您的 Button 变量:
Button button;
...
然后在您的 onCreate() 方法中写入以下内容:
button = (Button) findViewById(R.id.<Your buttons ID>);
button.setHeight(50);
提问前请先做调查。
假设我有一个按钮。我将如何以编程方式编辑其属性?我不想在布局中使用 XML 代码更改属性。
声明您的 Button 变量:
Button button;
...
然后在您的 onCreate() 方法中写入以下内容:
button = (Button) findViewById(R.id.<Your buttons ID>);
button.setHeight(50);
提问前请先做调查。