如何获得这样的可扩展布局?

How to get such an expandable layout?

有谁知道如何在 link 中获得付款方式和 之类的可扩展布局?我不希望它出现在列表视图中,因为我需要这样一个可扩展的布局来处理具有不同内容的其他内容。或者,如果可以容纳具有不同内容的项目,它可以在可扩展列表视图中。提前致谢!

http://chairnerd.seatgeek.com/images/autocomplete_checkout.gif

我找到了解决办法。

在你的布局文件中加入如下内容

<com.github.aakira.expandablelayout.ExpandableRelativeLayout
            android:id="@+id/expandableLayout4"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@+id/expandableButton4"
            android:background="#ffcc80"
            android:padding="16dp"
            app:ael_duration="400"
            app:ael_expanded="false"
            app:ael_interpolator="accelerate"
            app:ael_orientation="vertical">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#FFFFFF"
                android:text="Things to put in the expandable layout" />
        </com.github.aakira.expandablelayout.ExpandableRelativeLayout>

添加到您的构建 gradle 文件

dependencies {
compile 'com.github.aakira:expandable-layout:1.6.0@aar'}

展开布局的onClick监听设置方式

public void expandableButton1(View view) {
    expandableLayout1 = (ExpandableRelativeLayout) findViewById(R.id.expandableLayout1);
    expandableLayout1.toggle(); // toggle expand and collapse
}

更详细的说明:http://www.codeisall.com/android-expandable-layout/