Swipeable ListView in Android
Follow the bellow steps to create a Swipeable ListView in Android . Step 1: Create Project a) Open Android Studio b) Go to File >New> New Project > Project Name > Next > Next > Next > Finish Step 2: Add Design Library Open build.gradle > add this line compile "com.daimajia.swipelayout:library:1.2.0@aar" > Sync the gradle file . Like this dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:23.4.0' compile 'com.daimajia.swipelayout:library:1.2.0@aar' } If Gradle doesn’t automatically ask you to sync your project, open module 'app' from the Build menu or press F9. By doing so, the Android Studio build system will automatica...