Android Studio - 按钮尺寸
Android Studio - Button Size
我需要帮助在 ImageButton 中导入一个小尺寸的按钮,因为每当我将图像添加到图像按钮时,它总是太大,我也更新到新的 Android Studio ,它有一个 mipmap 文件夹,而不是 drawable 文件夹。
试试这个。它会将按钮上的图像拉伸到按钮大小。
<ImageButton
android:width = "xx"
android:height = "xx"
android:src = "@drawable/xxx"
android:scaleType="fitXY"/>
我需要帮助在 ImageButton 中导入一个小尺寸的按钮,因为每当我将图像添加到图像按钮时,它总是太大,我也更新到新的 Android Studio ,它有一个 mipmap 文件夹,而不是 drawable 文件夹。
试试这个。它会将按钮上的图像拉伸到按钮大小。
<ImageButton
android:width = "xx"
android:height = "xx"
android:src = "@drawable/xxx"
android:scaleType="fitXY"/>