android 在代码中这是imagebutton的大小和间距。

2025-01-25 15:10:56
推荐回答(3个)
回答1:

ImageButton 也是View的子类,View的间距和大小的设置

即控件之间的间距有两种设置:

  1. android:layout_margin="10dp" 外边距

  2. android:padding="10dp" 内边距

  3. android:textSize="18sp" 字体大小

提示, 控件大小号使用 dp单位,字体大小要使用 sp单位。

回答2:

你把它们放到一个layout里面让后设定这个layout的parameter就可以了

回答3:

setPadding(int, int, int, int)