图像未覆盖整个背景

时间:2018-01-15 08:55:50

标签: xml android-studio

我正在构建一个聊天应用程序,当我向用户发送图像时,图像并没有覆盖我给出的背景,而是提供有线填充顶部和底部。如何解决这个问题。我给出的填充是每侧7dp     这是我的代码

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp">
    <android.support.constraint.ConstraintLayout
        android:layout_width="wrap_content"
        android:id="@+id/photo"
        android:background="@drawable/toolbar_background"
        app:layout_constraintRight_toRightOf="parent"
        android:layout_height="wrap_content">
        <ImageView
            android:id="@+id/imageContentUser"
            android:layout_width="200dp"
            android:layout_height="200dp"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true"
            android:src="@drawable/doc"
            android:padding="0dp"
            android:adjustViewBounds="true"
            app:layout_constraintRight_toRightOf="parent" />
    </android.support.constraint.ConstraintLayout>
</android.support.constraint.ConstraintLayout>

enter image description here 我希望这是结果。 enter image description here 但是我得到了这个结果

1 个答案:

答案 0 :(得分:1)

您需要使用

android:scaleType="fitXY"

比例类型有许多值,例如matrix, fitXY, fitStart, fitCenter, firEnd, center, centerCrop, centerInside

您使用fitXY,如果您选择match_parent或者您想要的length and width

,它将覆盖所有屏幕

最终应该是这样的:

<ImageView
        android:id="@+id/image"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="fitXY"
        android:src="@drawable/ic_background_image" />

希望这对你有用。