luongvo / CardStackView

Tinder like swipeable card view for Android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Logo

CardStackView

Platform License API Download AndroidArsenal CircleCI

Overview

Overview

Contents

Features

Manual Swipe

ManualSwipe

Automatic Swipe

AutomaticSwipe

Custom animation is available when automatic swiping!

CardStackView#swipe(SwipeDirection, AnimatorSet)

Move to Origin

MoveToOrigin

Reverse

Reverse

CardStackView#reverse();

StackFrom

Default Value Sample
Top StackFrom-Top
Bottom StackFrom-Bottom
<com.yuyakaido.android.cardstackview.CardStackView
    app:stackFrom="top"
    or
    app:stackFrom="bottom"/>
CardStackView#setStackFrom(StackFrom.Top);
or
CardStackView#setStackFrom(StackFrom.Bottom);

VisibleCount

This value must be greater than 0.

Default Value Sample
3 VisibleCount-3
4 VisibleCount-4
<com.yuyakaido.android.cardstackview.CardStackView
    app:visibleCount="3"
    or
    app:visibleCount="4"/>
CardStackView#setVisibleCount(3);
or
CardStackView#setVisibleCount(4);

ElevationEnabled

Default Value Sample
true ElevationEnabled
false ElevationDisabled
<com.yuyakaido.android.cardstackview.CardStackView
    app:elevationEnabled="true"
    or
    app:elevationEnabled="false"/>
CardStackView#setElevationEnabled(true);
or
CardStackView#setElevationEnabled(false);

TranslationDiff

The unit of TranslationDiff is dp.

Default Value Sample
8dp TranslationDiff-18
12dp TranslationDiff-12
16dp TranslationDiff-16
<com.yuyakaido.android.cardstackview.CardStackView
    app:translationDiff="12"/>
CardStackView#setTranslationDiff(12f);

ScaleDiff

The range of ScaleDiff is 0.0 - 1.0.

Default Value Sample
0.02 ScaleDiff-2
0.1 ScaleDiff-10
<com.yuyakaido.android.cardstackview.CardStackView
    app:scaleDiff="0.02"/>
CardStackView#setScaleDiff(0.02f);

Overlay

Value Sample
Left Overlay-Left
Right Overlay-Right
<com.yuyakaido.android.cardstackview.CardStackView
    app:leftOverlay="@layout/overlay_left"
    or
    app:rightOverlay="@layout/overlay_right"/>
CardStackView#setLeftOverlay(R.layout.overlay_left);
or
CardStackView#setRightOverlay(R.layout.overlay_right);

SwipeEnabled

Default Value Sample
true SwipeEnabled
false SwipeDisabled
<com.yuyakaido.android.cardstackview.CardStackView
    app:swipeEnabled="true"
    or
    app:swipeEnabled="false"/>
CardStackView#setSwipeEnabled(true);
or
CardStackView#setSwipeEnabled(false);

SwipeDirection

Default Value Sample
Freedom SwipeDirection-Freedom
Horizontal SwipeDirection-Horizontal
Vertical SwipeDirection-Vertical
<com.yuyakaido.android.cardstackview.CardStackView
    app:swipeDirection="freedom"
    or
    app:swipeDirection="horizontal"
    or
    app:swipeDirection="vertical"/>
CardStackView#setSwipeDirection(SwipeDirection.FREEDOM);
or
CardStackView#setSwipeDirection(SwipeDirection.HORIZONTAL);
or
CardStackView#setSwipeDirection(SwipeDirection.VERTICAL);

SwipeThreshold

The range of SwipeThreshold is 0.0 - 1.0.

Default Value Sample
0.75 SwipeThreshold-75%
0.1 SwipeThreshold-10%
<com.yuyakaido.android.cardstackview.CardStackView
    app:swipeThreshold="0.75"/>
CardStackView#setSwipeThreshold(0.75f);

Installation

LatestVersion is LatestVersion

dependencies {
    compile "com.yuyakaido.android:card-stack-view:${LatestVersion}"
}

License

Copyright 2017 yuyakaido

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.

About

Tinder like swipeable card view for Android

License:Apache License 2.0


Languages

Language:Java 100.0%