可通过在布局文件中添加Button标签,通过android:layout_width,android:layout_height属性来设置大小;也可以通过在java代码中直接创建Button button = new Button(context);通过setWidth、setHeight方法设置大小,然后通过调用父控件的addView方法添加进视图中。