我想用它作为recyclerview的项目。
之前
后
问题: 我想要的是当我点击红色部分,然后黄色部分(在点击之前折叠)将被打开。
这样做有什么好办法吗?请教我。
这是我的post_item.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/tv_like_count"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ff0000"
android:minHeight="100dp"/>
<ImageView
android:id="@+id/iv_post_img"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffee58"
android:minHeight="100dp"/>
</LinearLayout>