atermenji/android-swipelistview — explained in plain English
Analysis updated 2026-08-06 · repo last pushed 2013-03-16
Build a messaging app where swiping a conversation deletes or archives it.
Create a task manager that reveals priority buttons when a task is swiped.
Add swipe-to-call or swipe-to-message shortcuts in a contact list app.
Make any list-heavy app feel more interactive without building gestures from scratch.
| atermenji/android-swipelistview | akarshsatija/beast | alexeygrigorev/codeforces-solutions-java | |
|---|---|---|---|
| Stars | 1 | 1 | 1 |
| Language | Java | Java | Java |
| Last pushed | 2013-03-16 | 2021-02-17 | 2020-10-03 |
| Maintenance | Dormant | Dormant | Dormant |
| Setup difficulty | moderate | hard | easy |
| Complexity | 2/5 | 4/5 | 1/5 |
| Audience | developer | data | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires the Android compatibility library and an external animation library to be included in your project setup.
SwipeListView is a tool for Android app developers who want to add swipe gestures to lists in their apps. Think of the email app on your phone where you swipe a message to archive or delete it. This project gives developers a ready-made way to build that kind of interaction. It works by replacing a standard Android list with a swipe-aware version. Each list item has two layers: a front view that users normally see, and a back view hidden underneath. When the user swipes left or right, the front layer slides away to reveal the back layer, or the item gets dismissed entirely. Developers can configure the direction of the swipe, whether it reveals or removes the item, the animation speed, and how far the item slides. These settings are defined in the app's layout file using simple attributes like "swipeActionLeft" or "swipeMode." This would appeal to developers building apps with list-heavy interfaces where swipe actions improve the user experience. A messaging app could let users swipe a conversation to delete it. A task manager could reveal priority buttons when a task is swiped. A contact list could let users swipe to call or message someone directly. Essentially, it makes lists feel more interactive without requiring developers to build the gesture recognition from scratch. The project was created by 47 Degrees, a development agency, to meet client needs. It relies on one external library for animation support and expects an Android compatibility library to be included. The README includes a link to a sample app and a video demo so you can see the swipe behavior in action before integrating it into your own project.
A ready-made Android list component that lets users swipe list items left or right to reveal hidden actions or dismiss them, similar to swiping emails in a mail app.
Mainly Java. The stack also includes Java, Android SDK, AndroidX Compatibility Library.
Dormant — no commits in 2+ years (last push 2013-03-16).
No license information is provided in the project README.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Don't trust strangers blindly. Verify against the repo.