RelativeLayout 背景图像未填充其布局

RelativeLayout Background Image is not Filling its Layout

它是这样显示的---

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="178dp"
    android:orientation="vertical"
    android:background="@mipmap/background_poly"
    android:scaleType="fitXY"
    android:weightSum="1">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="56dp"
    android:orientation="vertical"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true">

    <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="16dp"
        android:textColor="#ffffff"
        android:text="Xxxxx Xxxx"
        android:textSize="14sp"
        android:textStyle="bold"

        />

    <TextView
        android:id="@+id/email"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#ffffff"
        android:layout_marginLeft="16dp"
        android:layout_marginTop="5dp"
        android:text="xxxxxxxx@xxxx.com"
        android:textSize="14sp"
        android:textStyle="normal"

        />
</LinearLayout>

<de.hdodenhof.circleimageview.CircleImageView
    android:layout_width="70dp"
    android:layout_height="70dp"
    android:src="@mipmap/aka"
    android:layout_marginLeft="16dp"
    android:layout_marginTop="38dp"
    android:id="@+id/circleView"
    />
</RelativeLayout>

我希望背景图片完全填充相对布局。

我尝试将 scaleType 用于 **fitXY 、center_crop ** 等

我什至试过在 RelativeLayout 中添加一个 ImageView 并将其设置如下

<ImageView 
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_centerInParent="true"
        android:scaleType="centerCrop"
        android:src="@drawable/background" />

没用...

感谢帮助,谢谢...

mipmap 主要用于应用程序图标。你需要把你的图像资源放到 drawable 文件夹,并改变你的相对布局高度来匹配父

android:layout_height="match_parent"

首先,不要将 mipmap 文件夹用于启动器图标以外的任何图标或图像。将所有其他图标或图像放入各自的可绘制文件夹中。

其次,我试过你的代码,我用一种颜色替换了你的 background_poly 图像,它填充了整个相对布局。也许,您的图像内部包含填充,不允许它覆盖整个布局。在 Photoshop 等图像编辑工具中编辑图像

是你的背景图片问题。因为背景图像在边界处包含透明度。 移除边框的透明阴影效果或更改图像,您的问题将得到解决。

首先将 layoutHeight 更改为 android:layout_height="match_parent"

然后将 image scaleType 更改为 android:scaleType="fitXY"

并且还移除图像的 透明度。