ベストソリューションは、拡張可能なレイアウトを使用してCardViewに追加することです。
<com.kyo.expandablelayout.ExpandableLayout
android:id="@+id/expandlayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="12dp" >
<ImageView
android:id="@+id/imageview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@null"
android:scaleType="centerCrop"
android:src="@drawable/parent" />
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:contentDescription="@null"
android:scaleType="centerCrop"
android:src="@drawable/child"
app:canExpand="true" />
</com.kyo.expandable.ExpandableLayout>