我正在使用富媒体标题为我的应用设计CardView
。
我尝试做这样的事情:
根据谷歌材料设计规范,图片的宽高比应为16:9:
那么,我的问题,如何实现这个(代码或XML)?
如果我使用定义的大小,它将不是真正的16:9宽高比,我将不得不处理所有屏幕尺寸和方向的许多资源文件。
否则,我没有成功按代码设置大小,因为在onBindViewHolder(...)
中,我的视图中的getWidth()
返回0。
有什么想法吗?
答案 0 :(得分:7)
现在,在26.0.0中不推荐使用PercentFrameLayout
和PercentRelativeLayout
,您应该考虑使用ConstraintLayout来构建您的卡片。
以下是您案例的xml代码段:
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/CardView.Light"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp">
<android.support.constraint.ConstraintLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/media_image"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="0dp"
android:layout_marginEnd="0dp"
android:layout_marginStart="0dp"
android:layout_marginBottom="16dp"
android:scaleType="centerCrop"
app:srcCompat="@android:color/darker_gray"
app:layout_constraintDimensionRatio="H,16:9"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toTopOf="@+id/supporting_text"
app:layout_constraintVertical_chainStyle="spread_inside" />
<TextView
android:id="@+id/supporting_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:layout_marginBottom="16dp"
android:text="Greyhound divisively hello coldly wonderfully marginally far upon excluding."
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textColor="#DE000000"
app:layout_constraintTop_toBottomOf="@+id/media_image"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent" />
</android.support.constraint.ConstraintLayout>
</android.support.v7.widget.CardView>
您可以通过ConstraintLayout here查看其他卡片实施。所有这些都是按照Material design guidelines建立的。
答案 1 :(得分:4)
最简单的方法是使用PercentRelativeLayout
作为父ViewGroup
。然后,您可以在ImageView
app:layout_widthPercent="100%"
app:layout_aspectRatio="178%"
另一种选择是编写自己的自定义ImageView
并覆盖onMeasure()
,以确保视图以16:9的比例结束。 This回答告诉你如何做到这一点。