如何像 android:scaleType="fitCenter" 那样缩放位图?
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:drawable="@drawable/gradient"/>
<item android:bottom="60dip">
<bitmap
android:gravity="center_horizontal|bottom"
android:src="@drawable/image"/>
</item>
</layer-list>
我有 680x120px 的图像,图像不适合小屏幕。我一直在尝试重力,但它对我没有帮助(例如,我看到的图像是 240x120,但不是 240x42)。我将此样式用于活动背景,但不能使用 ImageView。