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.
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'
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:
CardView card = new CardView(mCardContainer,new CardModel(R.drawable.picture1));
Additionally, you can set up a Delegate to be notified when the image is being liked or disliked:
card.setOnCardDimissedDelegate(new CardView.OnCardDimissedDelegate() {
@Override
public void onLike(CardView cardView) {
Log.d("AndTinder", "I liked it");
}
@Override
public void onDislike(CardView cardView) {
Log.d("AndTinder", "I did not liked it");
}
});
You can also add an Intent that will be triggered when the bottom part is being pressed:
card.getCardModel().setIntent(new Intent(Intent.ACTION_VIEW, Uri.parse("https://github.com/kikoso/Swipeable-Cards")));
Finally, add the cards to the container:
mCardContainer.addView(card);
- 13.05.2014: Published the first version 0.1
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 :)
Enrique López Mañas - eenriquelopez@gmail.com
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.