在Android中,如何折叠和展开布局?

时间:2016-09-21 16:27:20

标签: android android-layout

我想用它作为recyclerview的项目。

之前

enter image description here

enter image description here

问题: 我想要的是当我点击红色部分,然后黄色部分(在点击之前折叠)将被打开。

这样做有什么好办法吗?请教我。

这是我的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>

0 个答案:

没有答案