是否有可能改变android中ImageButton周围边框的厚度?

时间:2010-12-28 11:21:42

标签: android imagebutton

我试图在不改变按钮大小的情况下增加ImageButton中图片的大小,这可能吗?

1 个答案:

答案 0 :(得分:1)

是的,您可以通过为按钮布局添加填充来增加它。请参阅我的示例XML代码具有填充

<ImageButton
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:text="Text"
   android:padding="20dp"
   android:background="@drawable/my_button"
   />