All Projects → realpacific → click-shrink-effect

realpacific / click-shrink-effect

Licence: MIT License
A simple library to add a temporary shrinking effect on View while clicking.

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to click-shrink-effect

Weather-Guru-MVP
Sample Material-design Android weather application build with MVP architectural approach using Dagger2, RxJava2, Retrofit2, Event-Bus, GreenDao, Butterknife, Lottie etc.
Stars: ✭ 15 (-53.12%)
Mutual labels:  android-development
SuperToolbar
Android native Toolbar on steroids 💪
Stars: ✭ 52 (+62.5%)
Mutual labels:  android-development
feature-flag-android
A Gradle plugin to achieve feature flag based development for Android applications.
Stars: ✭ 82 (+156.25%)
Mutual labels:  android-development
ULogViewer
Cross-Platform Universal Log Viewer.
Stars: ✭ 64 (+100%)
Mutual labels:  android-development
Xama.JTPorts.ShowcaseView
Xamarin.Android Native showcase view.
Stars: ✭ 17 (-46.87%)
Mutual labels:  android-development
android-trinity
android-trinity is tiny proactive framework with much of the scaffolding code required to start a new Android Application.
Stars: ✭ 44 (+37.5%)
Mutual labels:  android-development
mktool
Unpack and repack the android boot.img and recovery.img easily.
Stars: ✭ 52 (+62.5%)
Mutual labels:  android-development
Movies-PagingLibrary-Arch-Components
Sample to practice PagingLibrary & RX
Stars: ✭ 92 (+187.5%)
Mutual labels:  android-development
CurvedBottomNavigationView
we will learn How to draw custom shapes in Curved Bottom Navigation View
Stars: ✭ 42 (+31.25%)
Mutual labels:  android-development
android-boilerplate
Android Boilerplate à la ustwo
Stars: ✭ 43 (+34.38%)
Mutual labels:  android-development
android-custom-view
No description or website provided.
Stars: ✭ 15 (-53.12%)
Mutual labels:  android-development
Android-Shortify
An Android library used for making an Android application more faster with less amount of code. Shortify for Android provides basic functionalities of view and resource binding, view customization, JSON parsing, AJAX, various readymade dialogs and much more.
Stars: ✭ 21 (-34.37%)
Mutual labels:  android-development
ToDo
Android application to quickly add tasks and reminders.
Stars: ✭ 13 (-59.37%)
Mutual labels:  android-development
snap
Snap Programming Language
Stars: ✭ 20 (-37.5%)
Mutual labels:  android-development
Android-SQLite-Tutorial
This is a simple project of Android SQLite Relational Database. You can check my Bengali Blog Post on this topic
Stars: ✭ 34 (+6.25%)
Mutual labels:  android-development
ColdStorage
Lightweight data loading and caching library for android
Stars: ✭ 39 (+21.88%)
Mutual labels:  android-development
svg2vector
Online batch converter of SVG images to Android vector drawable XML resource files
Stars: ✭ 39 (+21.88%)
Mutual labels:  android-development
Debt-Manager
A personal app to store people that owe you money or you owe money to. "Mo Money Mo Problems" 🎵 - The Notorious B.I.G. 😎
Stars: ✭ 22 (-31.25%)
Mutual labels:  android-development
LoggerPreferences
Get to know which class changed the value in SharedPreferences.
Stars: ✭ 20 (-37.5%)
Mutual labels:  android-development
youtube-android
Source code as seen on my YouTube videos!
Stars: ✭ 35 (+9.38%)
Mutual labels:  android-development

Click Shrink Effect

A simple library to add a temporary shrinking effect on View while clicking.

Demo

Usage

Kotlin:

 button.applyClickShrink()
 fab.applyClickShrink()
 card_view.applyClickShrink()
 textview.applyClickShrink()
 image_view.applyClickShrink()

Java:

ClickShrinkEffectKt.applyClickShrink(button);
ClickShrinkEffectKt.applyClickShrink(fab);

// on 2.0 onwards...
ClickShrinkUtils.applyClickShrink(fab);
    // OR
new ClickShrinkEffect(button);
new ClickShrinkEffect(fab);

Installation

In build.gradle

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

dependencies {
    implementation 'com.github.realpacific:click-shrink-effect:2.0'
}

License

MIT License

Copyright (c) 2019 Prashant Barahi

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 the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].