# Android-SlideExpandableListView **Repository Path**: wuonly_admin/Android-SlideExpandableListView ## Basic Information - **Project Name**: Android-SlideExpandableListView - **Description**: A better ExpandableListView, with animated expandable views for each list item - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2015-01-12 - **Last Updated**: 2022-05-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SlideExpandableListView for Android ![Screenshot](https://github.com/tjerkw/Android-SlideExpandableListView/raw/master/raw/example-screens.png) Not happy with the Android ExpandableListView android offers? Want something like the Spotify app. This library allows you to have custom listview in wich each list item has an area that will slide-out once the users clicks on a certain button. ## Features * Provides a better ExpandableListView usable for normal ListView's * Animates by default * Easy to use Repository at . ## Usage ### Layout Use a normal list view in your layout. You may also use a ListActivity or ListFragment ``` xml ``` The list item view should have a toggle button (Button view), and a target view that will be expanded. By default the expandable view will be hidden. An when a user clicks the toggle button the expandalbe view will slide out and be visible. For example here below we have R.id.expandable_toggle_button Button view. And a R.id.expandable LinearLayout which will be expanded. Note that the expandable view does not have to be a LinearLayout, it can be any subclass of View. ``` xml