我正在尝试创建一个计算器应用程序,我想使用图像按钮来允许用户选择他们想要计算的内容。我想将此图像用于0按钮(zero button image)。目前,当我将图像添加到用户界面时,它会被裁剪为这样(cropped zero image)。当我调整按钮大小时,有没有办法让图像缩放到按钮的大小?谢谢!
代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.lontronix.calculator.Calculator">
<TextView
android:id="@+id/textView"
android:layout_width="500dp"
android:layout_height="125dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:text="@string/Filler_Text"
android:textSize="35pt" />
<ImageButton
android:id="@+id/imageButton"
android:layout_width="250dp"
android:layout_height="150dp"
app:srcCompat="@drawable/zero"
android:layout_marginStart="50dp"
android:layout_marginBottom="42dp"
android:layout_alignParentBottom="true"
/>
</RelativeLayout>
答案 0 :(得分:1)
在imageView上写下这些属性。
android:adjustViewBounds="true"
android:scaleType="fitXY"
或者你可以尝试不同的scaleType,见下文:
https://robots.thoughtbot.com/android-imageview-scaletype-a-visual-guide