{"id":21130171,"url":"https://github.com/diegocarloslima/FloatingGroupExpandableListView","last_synced_at":"2025-07-09T01:32:36.854Z","repository":{"id":12220136,"uuid":"14828209","full_name":"diegocarloslima/FloatingGroupExpandableListView","owner":"diegocarloslima","description":"An open source Android library that provides a floating group view at the top of the ExpandableListView","archived":false,"fork":false,"pushed_at":"2017-12-08T10:59:21.000Z","size":2058,"stargazers_count":372,"open_issues_count":18,"forks_count":136,"subscribers_count":29,"default_branch":"master","last_synced_at":"2024-11-20T05:32:29.018Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/diegocarloslima.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-11-30T20:53:36.000Z","updated_at":"2024-11-11T21:20:46.000Z","dependencies_parsed_at":"2022-09-26T21:40:31.108Z","dependency_job_id":null,"html_url":"https://github.com/diegocarloslima/FloatingGroupExpandableListView","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/diegocarloslima/FloatingGroupExpandableListView","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diegocarloslima%2FFloatingGroupExpandableListView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diegocarloslima%2FFloatingGroupExpandableListView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diegocarloslima%2FFloatingGroupExpandableListView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diegocarloslima%2FFloatingGroupExpandableListView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/diegocarloslima","download_url":"https://codeload.github.com/diegocarloslima/FloatingGroupExpandableListView/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diegocarloslima%2FFloatingGroupExpandableListView/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264375417,"owners_count":23598373,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-20T05:32:21.009Z","updated_at":"2025-07-09T01:32:36.442Z","avatar_url":"https://github.com/diegocarloslima.png","language":"Java","funding_links":[],"categories":["Libs"],"sub_categories":["\u003cA NAME=\"Widget\"\u003e\u003c/A\u003eWidget"],"readme":"# FloatingGroupExpandableListView\nFloatingGroupExpandableListView is ~~a huge name~~ an open source Android library that provides a floating group view (*aka* anchored / pinned / sticky section header) at the top of the `ExpandableListView`. This lib is based on Emil Sjölander's [StickyListHeaders](https://github.com/emilsjolander/StickyListHeaders).\n\n![Sample Screenshot](https://github.com/diegocarloslima/FloatingGroupExpandableListView/raw/master/sample.png)\u0026nbsp;![Sample Animation](https://github.com/diegocarloslima/FloatingGroupExpandableListView/raw/master/sample_animation.gif)\n\n## Features\n- Works with list headers, footers, dividers and padding.\n- Works with partially transparent or hidden group views.\n- Handles touch events on the floating group view properly.\n- Allows group transition animation.\n\n## Sample Application\n[![Get it on Google Play](http://www.android.com/images/brand/get_it_on_play_logo_small.png)](https://play.google.com/store/apps/details?id=com.diegocarloslima.fgelv.sample)\n\nThe sample app project code is also included on this repository.\n\n## Usage\nThe FloatingGroupExpandableListView is very easy to setup. You just need a few steps:\n\n1. Add the `FloatingGroupExpandableListView` to your xml file. It will look something like this:\n\n    ```xml\n    \u003ccom.diegocarloslima.fgelv.lib.FloatingGroupExpandableListView\n    android:id=\"@+id/my_list\"\n    android:layout_width=\"match_parent\"\n    android:layout_height=\"match_parent\"/\u003e\n    ```\n\n2. Then add these lines to your java code (usually on your `Activity.onCreate()` or `Fragment.onCreateView()` method):\n\n    ```java\n    FloatingGroupExpandableListView myList = (FloatingGroupExpandableListView) findViewById(R.id.my_list);\n    BaseExpandableListAdapter myAdapter = new MyAdapter();\n    WrapperExpandableListAdapter wrapperAdapter = new WrapperExpandableListAdapter(myAdapter);\n    myList.setAdapter(wrapperAdapter);\n    ```\n\n3. That's it! You're ready to go! For a complete implementation, you can take a look at the sample project.\n\n## Gradle\nAdd the following dependency to your `build.gradle` file:\n\n```groovy\ndependencies {\n    compile 'com.diegocarloslima:fgelv:0.1.+@aar'\n}\n```\n\n## Used by\n\n[Call recorder (2 in 1) (Free)](https://play.google.com/store/apps/details?id=com.CallVoiceRecorderFree)\n\n[Tourism Coast Atlantic Forest](https://play.google.com/store/apps/details?id=br.com.jalan.oasis2.srcvb2014)\n\nLet me know if you are using this lib in your app. I'll be glad to put your app name here :).\n\n## Contributing\n\nPull requests with bug fixes or new features are always welcome :), but please, send me a separate pull request for each bug fix or feature. Also, you can [contact](mailto:diego@diegocarloslima.com) me to discuss a new feature before implementing it.\n\n## Developed By\n\nDiego Carlos Lima: \u003cdiego@diegocarloslima.com\u003e\n\n## License\n\n    Copyright 2013 Diego Carlos Lima\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiegocarloslima%2FFloatingGroupExpandableListView","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdiegocarloslima%2FFloatingGroupExpandableListView","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiegocarloslima%2FFloatingGroupExpandableListView/lists"}