在我的 Android 项目中,我不太确定如何让我的背景图像填充RelativeLayout
XML 中的整个根元素,即屏幕的大小。我想确保这适用于所有纵横比,因此图像将根据需要垂直或水平剪辑。有人知道如何轻松做到这一点吗?我只看到有关ImageView
s 和Button
s 的问题,但不是真正的通用View
s。
我的 XML 文件目前:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/enclosing_rl"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background"
android:fitsSystemWindows="false">
<!-- Other elements -->
</RelativeLayout>