gpt4 book ai didi

android - 图片不适合屏幕

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

我有一张 320x480 的图片,我希望它适合整个屏幕。这是main.xml代码

<ImageView   xmlns:android="http://schemas.android.com/apk/res/android">
android:id='@+id/splash_medium'

android:layout_width="fill_parent"
android:layout_height="fill_parent"

android:src="@drawable/wallpaper320x480"
/>

屏幕显示了图像,但左侧和右侧有相当大的填充,顶部和底部有一点点。我试过将 android:padding 设置为 0dip 但没有结果。

图片链接,我还不能发布图片:screenshot

如有任何帮助,我们将不胜感激。

最佳答案

这可能是您的图片大小和缺乏缩放比例的问题。如果您的图片没有足够的像素来填满屏幕并且您没有告诉它拉伸(stretch)图片,那么您将在两侧出现间隙。解决方法是使用 android:scaleType="fitXY"。请注意,这适用于使用 android:src="..." 而不是 android:background="..." 设置图像的情况,因为背景由默认拉伸(stretch)并适合 View 。 (同时拥有这两者的目的是,通过将框架设置为背景并将主图像设置为源,它可以让您执行诸如在图像周围设置框架之类的操作。)

关于android - 图片不适合屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2515392/

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