完整图像不会显示在CardView中

时间:2016-07-31 05:38:12

标签: android android-studio android-imageview android-cardview

我在Android Studio中使用CardView,我想在其中使用ImageView来显示一些图片,但问题是它没有显示完整的图像。我想缩放它以显示完整的图像。

以下是我的代码的一部分:

        <android.support.v7.widget.CardView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="@dimen/card_margin"
            android:layout_marginLeft="@dimen/card_margin"
            android:layout_marginRight="@dimen/card_margin">

            <LinearLayout
                style="@style/Widget.CardContent"
                android:layout_width="match_parent"
                android:layout_height="wrap_content">

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="more"
                    android:textAppearance="@style/TextAppearance.AppCompat.Title" />

                <a.extera.CustomTxtView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/txt_more"
                    android:lineSpacingExtra="7dp"
                    android:textSize="18dp"
                    android:text="more" />

                <ImageView
                    android:id="@+id/backdrop1"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:scaleType="centerInside"
                    android:fitsSystemWindows="true"
                    android:orientation="vertical"
                    android:layout_alignParentLeft="true"
                    android:layout_alignParentStart="true"
                />

                <a.extera.CustomTxtView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/txt_more2"
                    android:lineSpacingExtra="7dp"
                    android:textSize="18dp"
                    android:text="more" />

                <ImageView
                    android:id="@+id/backdrop2"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:scaleType="centerInside"
                    android:fitsSystemWindows="true"
                    android:layout_centerVertical="true"
                    android:layout_centerHorizontal="true"
                    android:orientation="vertical"
                    app:layout_collapseMode="parallax"
                  />

                <a.extera.CustomTxtView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/txt_more3"
                    android:lineSpacingExtra="7dp"
                    android:textSize="18dp"
                    android:text="more" />

                <ImageView
                    android:id="@+id/backdrop3"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:scaleType="centerInside"
                    android:fitsSystemWindows="true"
                    android:layout_centerVertical="true"
                    android:layout_centerHorizontal="true"
                    android:adjustViewBounds="true"
                    android:orientation="horizontal"
                    app:layout_collapseMode="parallax" />

                <a.extera.CustomTxtView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/txt_more4"
                    android:lineSpacingExtra="7dp"
                    android:textSize="18dp"
                    android:text="more" />


                <ImageView
                    android:id="@+id/backdrop4"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:scaleType="centerInside"
                    android:fitsSystemWindows="true"
                    android:layout_centerVertical="true"
                    android:layout_centerHorizontal="true"
                    android:orientation="vertical"
                    app:layout_collapseMode="parallax"
                    android:adjustViewBounds="false" />

                <a.extera.CustomTxtView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/txt_more5"
                    android:lineSpacingExtra="7dp"
                    android:textSize="18dp"
                    android:text="more" />

                <ImageView
                    android:id="@+id/backdrop5"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:scaleType="centerInside"
                    android:layout_centerVertical="true"
                    android:layout_centerHorizontal="true"
                    android:orientation="vertical"
                    android:fitsSystemWindows="true"
                    app:layout_collapseMode="parallax"
                    android:adjustViewBounds="false" />

            </LinearLayout>

        </android.support.v7.widget.CardView>
  

例如这是完整的图像:

https://s32.postimg.org/mntlijbn9/a_2.jpg

  

这就是它所显示的:

https://s32.postimg.org/s6fyuyd91/image.jpg

1 个答案:

答案 0 :(得分:0)

将ImageView中的android:scaleType="centerInside"更改为android:scaleType="fitXY"

相关问题