大图像不适合android中的图像视图

时间:2018-01-31 06:36:22

标签: android android-layout android-constraintlayout

enter image description here

我正在使用firebase创建聊天应用程序发送图像不适合图像视图的大图像消息帮我解决下面的代码

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:paddingTop="8dp">

    <ImageView
        android:id="@+id/image_message_body"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:scaleType="fitXY"
        android:layout_marginEnd="8dp"
        android:layout_marginTop="6dp"
        />
</android.support.constraint.ConstraintLayout>

1 个答案:

答案 0 :(得分:0)

您可以为高度或宽度设置特定尺寸。我正在使用200和100 dp,这取决于你想要什么

<ImageView
        android:id="@+id/image_message_body"
         android:layout_width="200dp"  
         android:layout_height="100dp"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:scaleType="fitXY"
        android:layout_marginEnd="8dp"
        android:layout_marginTop="6dp"
        />