ConstraintLayout中的ImageButton缩放问题

时间:2018-12-08 05:50:38

标签: android xml android-studio android-layout imagebutton

只是把它放在那里,我很少使用.xml,所以对基本问题感到抱歉。我到处寻找其他解决方案,但似乎没有一个真正能解决我的问题。

因此,我要在登录屏幕上添加一个ImageButton,并且实际图像太大。这是当我将其放置且不进行任何调整时的图像。

enter image description here

“登录”按钮太大,我希望它适合背景中“登录”按钮的大小。因此,我尝试使用调整大小的视图处理程序来缩放它,并且还调整了android:layout_width=…和高度。但是当我这样做时,图像不会被调整大小,只是图像中放置的区域会被调整大小。这就是发生的情况

enter image description here

如您所见,它只是删除图像的某些部分并调整图像所在的区域。我如何调整按钮的IMAGE部分的实际大小?这就是我在.xml

中所做的
<ImageButton
    android:id="@+id/signinButtonLogin"
    android:layout_width="115dp"
    android:layout_height="53dp"
    android:background="null"
    app:srcCompat="@drawable/loginbutton"
    tools:layout_editor_absoluteX="13dp"
    tools:layout_editor_absoluteY="447dp" />

很抱歉,如果这是一个基本问题,我才刚刚开始学习有关.xml的方法

0 个答案:

没有答案