我试图向
ImageView
添加CardView
,但我不知道如何 设置具有全宽度的ImageView
内的图像 (match_parent
)和wrap_content
高度!默认会有 在Imageview中有一些空间(底部和顶部,取决于宽度和 图像高度)如下所示:
另一个例子:
如何在不裁剪图像的情况下删除这些空白区域?
这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/cardview2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:clickable="true"
android:focusable="true"
android:foreground="?android:attr/selectableItemBackground"
app:cardElevation="3dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/cardviewLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/ryan_gosling"
/>
</LinearLayout>
</RelativeLayout>
</android.support.v7.widget.CardView>
答案 0 :(得分:0)
确定问题已解决。
一个非常简单的代码:
android:adjustViewBounds="true"
答案 1 :(得分:0)
您可以尝试将scaletype添加到imageview。这实际上会根据您给出的值来缩放图像。 Here you can refer it.