gpt4 book ai didi

android - 怎样消除图片周围的黑边

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:53:26 25 4
gpt4 key购买 nike

我需要删除 android 屏幕中图片周围出现的黑色边框。我的照片是全 Blade 的,但我总是在纵向或横向方向上得到一种黑色边框。我试图更改参数但没有成功。这是我的 xml 布局代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="vertical">
<ImageView
android:src="@drawable/map"
android:id="@+id/fullmap"
android:layout_height="fill_parent" android:layout_width="fill_parent"> </ImageView>
</LinearLayout>

有人可以帮我找出错误吗?图片大于屏幕 480x320 - 800x480 - 1280x800

enter image description here

谢谢

最佳答案

如果黑色边框是指横向图片左右两侧的空白区域,那么您需要设置 ScaleType在你的 imageView 标签中。

第一个会拉伸(stretch)图像并且不保持纵横比

android:scaleType="fitXY" 

这将放大图像直到所有边都被填满并保持宽高比。

android:scaleType="centerCrop"

关于android - 怎样消除图片周围的黑边,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7058353/

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