【问题标题】:How to adjust cardView according to imageView inside in android?如何根据android里面的imageView调整cardView?
【发布时间】:2021-04-06 17:14:19
【问题描述】:

我想让我的cardView根据里面imageView的宽高自行调整,达到这样的效果。

但是我在设计方面没有真正的经验,所以我遇到了麻烦。 这是我正在使用的代码

<androidx.constraintlayout.widget.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:layout_marginTop="16dp">

    <TextView
        android:id="@+id/imageTimeMessageSent"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="9:16 AM"
        android:textSize="14sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/cardView4"
        app:layout_constraintHorizontal_bias="0.7"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.98" />

    <androidx.cardview.widget.CardView
        android:id="@+id/cardView4"
        android:layout_width="230dp"
        android:layout_height="230dp"
        android:layout_marginEnd="12dp"
        app:cardBackgroundColor="?attr/colorPrimary"
        app:cardCornerRadius="6dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0">

        <ImageView
            android:id="@+id/imageMessageSent"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:padding="6dp"
            android:scaleType="centerInside"
            android:src="@drawable/ic_launcher_background"
            tools:srcCompat="@drawable/default_profile" />
    </androidx.cardview.widget.CardView>
</androidx.constraintlayout.widget.ConstraintLayout>

该代码适用于大多数图像,但有些图像会在 cardView 上留下空间

注意:我也想有一定的限制,这样 cardView 就不会超出这个范围

【问题讨论】:

    标签: android android-cardview


    【解决方案1】:

    所以在cardView中

    android:layout_width="0dp"
    android:layout_height="wrap_content"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    

    图像视图

    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:adjustViewBounds="true"
    

    如果您添加它,它将按您的意愿工作。

    【讨论】:

    • 我不得不调整 cardView 宽度 240dp 但它达到了我需要的效果。谢谢
    【解决方案2】:

    只需将 cardView 的高度和宽度设置为 wrap_content 如下:

     <androidx.cardview.widget.CardView
        android:id="@+id/cardView4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="12dp"
        app:cardBackgroundColor="?attr/colorPrimary"
        app:cardCornerRadius="6dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0">
    

    【讨论】:

      【解决方案3】:

      您可以将ImageView的宽度/高度设置为与CardView相同,并使用android:scaleType="fitCenter"

      <ImageView
          android:id="@+id/imageMessageSent"
          android:layout_width="230dp"
          android:layout_height="230dp"
          android:background="@drawable/abdeen_04"
          android:padding="6dp"
          android:scaleType="fitCenter" />
      

      【讨论】:

        猜你喜欢
        • 2023-04-04
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2013-05-08
        相关资源
        最近更新 更多