SwipeCardsView


Source link: https://github.com/Arjun-sna/android-swipecards-view

SwipeCardsView

##Demo

##Installation

repositories {

  jcenter() 
}
  dependencies {

  compile 'in.arjsna:swipecardlib:1.0.2' 
}
 

##Usage Add SwipeCardView to the layout xml file where it is needed

<in.arjsna.swipecardlib.SwipeCardView
  android:id="@+id/frame"
  android:layout_width="match_parent"
  android:layout_height="0dp"
  android:layout_weight="1"
  app:rotation_degrees="15.5"
  app:bottom_swipe_detect="false"
  tools:context=".CardSwipeActivity" />

The various customisation attribures available are

max_visible - maximum card to be show in stack as visible

min_adapter_stack - minimum card count left at which callback about adapter to empties will be called

left_swipe_detect - whether swipe to lelf should be enabled or not. true by default

right_swipe_detect - whether swipe to right should be enabled or not. true by default

top_swipe_detect - whether swipe to top should be enabled or not. true by default

bottom_swipe_detect - whether swipe to bottom should be enabled or not. true by default

Create an ArrayAdapter with card list

CardsAdapter arrayAdapter = new CardsAdapter(this, al );

Set the adapter and fling listener to SwipeCardView

SwipeCardView swipeCardView = (SwipeCardView) findViewById(R.id.swipe_card_view);
 swipeCardView.setAdapter(arrayAdapter);
 swipeCardView.setFlingListener(new SwipeCardView.OnCardFlingListener() {

 @Override

 public void onCardExitLeft(Object dataObject) {

Log.i(TAG, "Left Exit");

  
}

  @Override

 public void onCardExitRight(Object dataObject) {

Log.i(TAG, "Right Exit");

 
}

  @Override

 public void onAdapterAboutToEmpty(int itemsInAdapter) {

Log.i(TAG, "Adater to be empty");

//add more items to adapter and call notifydatasetchanged

 
}

  @Override

 public void onScroll(float scrollProgressPercent) {

Log.i(TAG, "Scroll");

 
}

  @Override

 public void onCardExitTop(Object dataObject) {

Log.i(TAG, "Top Exit");

 
}

  @Override

 public void onCardExitBottom(Object dataObject) {

Log.i(TAG, "Bottom Exit");

 
}

}
);

The cards can be removed by code with fling animation

swipeCardView.throwRight();
 //throw card to right swipeCardView.throwLeft();
 //throw card to left swipeCardView.throwTop();
 //throw card to top swipeCardView.throwBottom();
 //throw card to bottom

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Resources

Are you tired of creating a new DialogFragment for each Dialog that you want to display?

This is an Android library that provides a simple implementation of a DialogFragment. It allows to define the content of the Dialog (and its button listeners) without having to create a new DialogFragment subclass.

Android App starter based on Android + MVP + Dagger2 + RxJava2 + Robolectric + Espresso + Mockito + JaCoCo.

Floating-ArcMenu A prety menu for all application

Android floating arc menu which reacts on scrolling events. Becomes visible when an attached target is scrolled up and invisible when scrolled down.

Ever get stuck with iOS image resources? Rather than write your own script, use this one to rename and move iOS image resources so they work for Android. Now converting iOS resources to Android ones is easy!

TwoStageRate is a library to help you promote your android app by prompting users to rate the app after using it for a few days. Also its two stage process ensures higher reviews to go to play store while getting useful feedback on lower ratings.

This is the official conference app for DroidKaigi 2017 Tokyo.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes