Code Monkey home page Code Monkey logo

swipeable-cards's Introduction

Swipeable cards: Tinder-like cards library for Android

Swipeable-cards is a native library for Android that provide a Tinder card like effect. A card can be constructed using an image and displayed with animation effects, dismiss-to-like and dismiss-to-unlike, and use different sorting mechanisms.

The library is compatible for Android versions 3.0 (API Level 11) and upwards.

A library and a sample application are provided with the code.

Example Image Example Image

Usage

Download the library with git and import it into your project (right now there is only Gradle support, so you need to import it writing in your build.gradle the following:

compile project(':AndTinder')

and in your settings.gradle

include 'AndTinder'

You can also download it via MavenCentral and Gradle:

dependencies {
   compile 'com.github.kikoso:SwipeableCards:1.1-RELEASE@aar'
}

When you have included the library in your project, you need to proceeed as follows. First, create a container to store the cards.

<com.andtinder.view.CardContainer 
     xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@+id/layoutview"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent" />

From your Activity, inflate into a CardContainer the container you declared in your XML

mCardContainer = (CardContainer) findViewById(R.id.layoutview);

The card container can sort the cards either ordered or disordered:

mCardContainer.setOrientation(Orientation.Ordered);
mCardContainer.setOrientation(Orientation.Disordered);

Now you need to create your cards. The procedure is quite simple: you just need to create an object CardView and provide the image resource you want to add:

CardModel card = new CardModel("Title1", "Description goes here", r.getDrawable(R.drawable.picture1);

Additionally, you can set up a Delegate to be notified when the image is being liked or disliked:

card.setOnCardDimissedListener(new CardModel.OnCardDismissedListener() {
     @Override
     public void onLike() {
          Log.d("Swipeable Card", "I liked it");
     }

     @Override
     public void onDislike() {
          Log.d("Swipeable Card", "I did not liked it");
     }
});

Or when it is clicked:

card.setOnClickListener(new CardModel.OnClickListener() {
     @Override
     public void OnClickListener() {
          Log.i("Swipeable Cards","I am pressing the card");
     }
});

Finally, use an adapter to link the cards and the container:

SimpleCardStackAdapter adapter = new SimpleCardStackAdapter(this);
adapter.add(new CardModel("Title1", "Description goes here", r.getDrawable(R.drawable.picture1)));
mCardContainer.setAdapter(adapter);

Version history

  • 14.02.2015: Version 0.3: Fixed bugs with the cards locations and updated to the latest build tools
  • 4.06.2014: Published the version 0.2 with several improvements thanks to Dr-Emann
  • 13.05.2014: Published the first version 0.1

Next steps

There are many things that can be done with this library.

  • Allow custom templates
  • Extend image personalization options
  • Recreate the container when it has been emptied

If you want to colaborate with the project or have any idea to be implemented feel free to submit a pull request or to write an issue!

Also, if you have used AndTinder on your app and you let me know, I can link it from here :)

Contact

Enrique López Mañas - [email protected]

License

Copyright 2014 Enrique López Mañas

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License 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.
Follow me on Twitter Follow me on Google+ Follow me on LinkedIn

swipeable-cards's People

Contributors

kikoso avatar jahertor avatar charuvijay avatar fadelakin avatar mathur avatar tarr1124 avatar tomxor avatar dr-emann avatar afeozzz avatar zhuiji7 avatar

Watchers

James Cloos avatar happyyang avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.