我正在尝试在我的 Android 应用程序中设置背景图像。我有一个 JPEG 图像,我想用图像的高度填充屏幕,保持相同的纵横比。
我尝试通过在drawable中创建一个XML位图文件并将其设置为:
android:background="@drawable/background_image"
这是 XML
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/wallpaper1_1920x1200"
android:tileMode="disabled"
android:gravity="center" >
</bitmap>
使用“中心”标签,它不会拉伸图像,也不会调整它的大小。
有没有办法显示图像的全高(和裁剪边)保持原始纵横比?