删除填充ImageButton

时间:2017-07-22 01:33:05

标签: android

this is my button

我正在使用ImageButton,我无法删除图像和按钮边框之间的填充或空格。我怎样才能做到这一点?

这是我的布局

<ImageButton
 android:id="@+id/imageButton"
 style="?attr/selectableItemBackgroundBorderless"
 android:layout_width="103dp"
 android:layout_height="110dp"
 android:layout_marginLeft="8dp"
 android:layout_weight="1"
 android:paddingBottom="-15dp"
 android:paddingTop="30dp"
 android:scaleType="fitCenter"
 app:srcCompat="@drawable/com_facebook_profile_picture_blank_square" />

非常感谢!

2 个答案:

答案 0 :(得分:1)

非常感谢!这是我的解决方案:

<ImageButton
android:id="@+id/imageButton"
style="?attr/selectableItemBackgroundBorderless"
android:layout_width="103dp"
android:layout_height="110dp"
android:layout_marginLeft="8dp"
android:paddingBottom="0dp"
android:paddingTop="50dp"
android:scaleType="fitCenter"
app:srcCompat="@mipmap/ic_launcher"
 />

我将padding bottom设置为0

答案 1 :(得分:0)

试试这个!可能适合你

android:scaleType="centercrop"