1

我现在正在尝试开发一个使用 CardViews 的应用程序,我希望它们可以扩展;也就是说,当有人按下 CardView 时,它应该展开以显示更多细节。我该怎么做呢?

在此处输入图像描述

这是我正在尝试做的视觉解释;当我按下突出显示的 CardView 时,我希望它展开以显示更多信息,并能够在另一次按下时收缩;我不知道如何做到这一点,并且搜索互联网导致我至今没有答案。

4

1 回答 1

0

最好的解决方案是,使用可扩展布局并将其添加到您的 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>
于 2016-07-16T17:56:45.670 回答