我在卡片视图的顶部有一张图片。它有一个小的(不需要的)边缘,我不知道为什么......也许有人可以给我一个如何解决它的提示?非常感谢!
如果我不使用“adjustViewBounds”,它会起作用。但我需要它来获得图像下的进一步观点。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_marginStart="10dp"
android:layout_marginEnd="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/nature"
android:scaleType="fitStart"
android:adjustViewBounds="true"
android:id="@+id/exercise_picture"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Test"/>
</LinearLayout>
</android.support.v7.widget.CardView>
</RelativeLayout>
答案 0 :(得分:1)
尝试将ImageView scaleType设置为填充所有提供空间的内容,例如cropCenter。
fitStart将整个图像放入空间并保持纵横比。由于图像比CardView高一点,并且您将其设置为fitStart,右侧可能会有一些额外的空间。
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/nature"
android:scaleType="cropCenter"
android:adjustViewBounds="true"
android:id="@+id/exercise_picture"/>