gpt4 book ai didi

android - 为什么图像不填充宽度

转载 作者:行者123 更新时间:2023-11-29 14:42:30 24 4
gpt4 key购买 nike

我的 main.xml 中有以下图像标记未填充设备的宽度?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:screenOrientation="portrait">

<ImageView
android:id="@+id/ImageView01"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:src="@drawable/marker">
</ImageView>

</LinearLayout>

最佳答案

您将 ImageView 的高度设置为 wrap_content。这意味着 ImageView 只会占用您选择的图像所需的空间。如果您希望它占据整个屏幕,只需将您的 layout_height 更改为 fill_parent

您还需要使用 android:scaleType="" 选择 ImageView scaleType

关于android - 为什么图像不填充宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4236642/

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