gpt4 book ai didi

Android背景图片填满屏幕

转载 作者:IT老高 更新时间:2023-10-28 21:44:03 28 4
gpt4 key购买 nike

如何让我的相对布局像这样显示我的 ImageView :

enter image description here

而不是这个?:

enter image description here

我希望我的布局尽可能多地显示图像并裁剪图像的外部,例如在 Windows 中将桌面背景图像设置为“填充”时:

enter image description here

到目前为止我的 xml 布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" android:fitsSystemWindows="true" android:alwaysDrawnWithCache="false">

<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" android:src="@drawable/background_race_light"/>

<LinearLayout
android:id="@+id/linearLayout1"
style="@style/SessionResumeBar"
android:layout_width="match_parent"
android:layout_height="wrap_content" >

<TextView
android:id="@+id/home_resumeSessionBar_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium" />

<Button
android:id="@+id/home_resumeSessionBar_buttonResume"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Resume" />
</LinearLayout>





</RelativeLayout>

最佳答案

为您的 ImageView 添加比例类型。有几种类型。你需要的是

android:scaleType="center"

这个 page将有助于解释所有不同的类型。

关于Android背景图片填满屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10679366/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com