Popularity
1.9
Stable
Activity
0.0
Stable
55
2
9

Description

A smooth slider with a modern UI and effects based on ViewPager. More features coming soon

Programming language: Kotlin
License: MIT License
Tags: UI     Android     Animations     ViewPager     Java     Custom View     Android-library     Slider     smoothSlider     Card Slider    
Latest version: v1.1

ՏʍօօӀíժҽɾ ⭐ alternatives and similar packages

Based on the "Animations" category.
Alternatively, view ՏʍօօӀíժҽɾ ⭐ alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ՏʍօօӀíժҽɾ ⭐ or a related project?

Add another 'Animations' Package

README

SMOOLIDER ⭐

A smooth slider with a modern UI and effects based on ViewPager. More features coming soon


Supports ❤

Feel free to give your support by contributing to this library. Buy me a beer! Follow me on Github for upcoming repositories:

license Codacy Badge CircleCI

Installation

build.gradle

Add jitpack maven in your root build.gradle at the end of repositories:

allprojects {
        repositories {
            ...
            maven { url 'https://jitpack.io' }
        }
    }

Add the dependency to your app build.gradle file (not your project build.gradle file).

dependencies {
   implementation 'com.github.astrit-veliu:Smoolider:1.1'
}

Usage

Smoolider is used the same as a normal ViewPager but more beautiful and with other functionalities. You can use my adapter, or implement a new one.

XML

Include the widget in xml.

<?xml version="1.0" encoding="UTF-8"?>

<com.av.smoothviewpager.Smoolider.SmoothViewpager
            android:id="@+id/smoolider"
            android:paddingRight="10dp"
            android:layout_alignParentBottom="true"
            android:clipToPadding = "false"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
        </com.av.smoothviewpager.Smoolider.SmoothViewpager>

Java

After attaching the adapter to SmoothViewpager you can start/cancel autoplay of slides, adjust the quality of images and interact with other widgets.

//feedItemList.size() returns the number of viewpager pages
autoplay_viewpager(viewPager,feedItemList.size()); 

//this method stops autoplay
stop_autoplay_ViewPager(); 

//reduces the quality of image
img_slider.setImageBitmap(decodeSampledBitmapFromResource(mContext.getResources(),card_gift.getImage(), 800, 650)); 

📄 License

Smoolider is released under the MIT license. See [LICENSE](./LICENSE) for details.

MIT License

Copyright (c) 2019 Astrit Veliu

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


*Note that all licence references and agreements mentioned in the ՏʍօօӀíժҽɾ ⭐ README section above are relevant to that project's source code only.