首页 > 解决方案 > 删除 imagebutton 中的空格

问题描述

在我的图像按钮中,源图像周围有很多空白区域。是否可以删除此空间,以便图像按钮仅围绕源图像本身。

在此处输入图像描述

<ImageButton
  android:id="@+id/story_1"
  android:src="@drawable/my_story"
  style="?android:attr/borderlessButtonStyle"
  android:layout_width="55dp"
  android:layout_height="wrap_content"
  android:adjustViewBounds="true"
  android:scaleType="fitXY"
  android:contentDescription="Add my story" />

标签: android

解决方案


试试这个

<ImageButton
  android:id="@+id/story_1"
  android:src="@drawable/my_story"
  style="?android:attr/borderlessButtonStyle"
  android:background="@null"
  android:layout_width="55dp"
  android:layout_height="wrap_content"
  android:adjustViewBounds="true"
  android:scaleType="fitXY"
  android:contentDescription="Add my story" />

推荐阅读