有谁知道如何获得像付款方式和链接中的可扩展布局?我不希望它出现在列表视图中,因为我需要这种可扩展的布局适用于具有不同内容的其他事物。或者,如果可以放入具有不同内容的项目,则它可以在可扩展的列表视图中。提前谢谢您!
http://chairnerd.seatgeek.com/images/autocomplete_checkout.gif
有谁知道如何获得像付款方式和链接中的可扩展布局?我不希望它出现在列表视图中,因为我需要这种可扩展的布局适用于具有不同内容的其他事物。或者,如果可以放入具有不同内容的项目,则它可以在可扩展的列表视图中。提前谢谢您!
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/