-
Notifications
You must be signed in to change notification settings - Fork 355
Foldable list usage
Alex Vasilkov edited this page Feb 24, 2017
·
8 revisions
-
Add
FoldableListLayout
to you layout:<com.alexvasilkov.foldablelayout.FoldableListLayout android:id="@+id/foldable_list" android:layout_width="match_parent" android:layout_height="wrap_content" />
-
Set up an adapter (
BaseAdapter
):FoldableListLayout foldableListLayout = (FoldableListLayout) findViewById(R.id.foldable_list); foldableListLayout.setAdapter(...);