这是我的ImageButton代码
<ImageButton
android:id="@+id/undoButton"
android:clickable="true"
android:scaleType="fitXY"
android:src="@drawable/undobutton_disabled"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/chessBoard" />
目前为止的结果
这是我到目前为止所尝试的:
1. Made the scaleType fitCenter, but that didn't work.
2. Made the imagebutton height and width the same size as my picture, but that didnt work either.
感谢任何帮助,谢谢。
答案 0 :(得分:1)
好的,对不起,我一发布这个问题,我就知道了答案。
android:padding="0dp"
这解决了我的问题。
编辑:我应该删除这个问题吗?答案 1 :(得分:1)
如果您要整理内容,ImageView
将符合图片的实际尺寸。
您需要替换
android:layout_width="wrap_content"
android:layout_height="wrap_content"
还有别的东西,例如
android:layout_width="match_parent"
android:layout_height="match_parent"