A Photo Editor library with simple, easy support for image editing using paints,text,filters,emoji and Sticker like stories.

Overview

PhotoEditor

CircleCI Downloads API JavaDoc Uplabs AndroidArsenal AndroidDevDigest AwesomeAndroid AndroidWeekly Mindorks

Buy Me A Coffee

A Photo Editor library with simple, easy support for image editing using Paints, Text, Filters, Emoji and Sticker like stories.

Features

  • Drawing on image with option to change its Brush's Color, Size, Opacity and Erasing.
  • Apply Filter Effect on image using MediaEffect
  • Adding/Editing Text with option to change its Color with Custom Fonts.
  • Adding Emoji with Custom Emoji Fonts.
  • Adding Images/Stickers
  • Pinch to Scale and Rotate views.
  • Undo and Redo for Brush and Views.
  • Deleting Views
  • Saving Photo after editing.
  • More FAQ.

Benefits

  • Hassle free coding
  • Increase efficiency
  • Easy image editing

AndroidX

PhotoEditor v.1.0.0 is a migration to androidX and dropping the support of older support library. There are no API changes. If you find any issue migrating to v.1.0.0 , please follow this Guide. If you still facing the issue than you can always rollback to v.0.4.0. Any fix in PR are Welcome :)

Getting Started

To start with this, we need to simply add the dependencies in the gradle file of our app module like this

implementation 'ja.burhanrashid52:photoeditor:1.1.1'

or we can also import the :photoeditor module from sample for further customization

Setting up the View

First we need to add PhotoEditorView in our xml layout

 <ja.burhanrashid52.photoeditor.PhotoEditorView
        android:id="@+id/photoEditorView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:photo_src="@drawable/got_s" />
  

We can define our drawable or color resource directly using app:photo_src

We can set the image programmatically by getting source from PhotoEditorView which will return a ImageView so that we can load image from resources,file or (Picasso/Glide)

PhotoEditorView mPhotoEditorView = findViewById(R.id.photoEditorView);

mPhotoEditorView.getSource().setImageResource(R.drawable.got);

Building a PhotoEditor

To use the image editing feature we need to build a PhotoEditor which requires a Context and PhotoEditorView which we have to setup in our xml layout

//Use custom font using latest support library
Typeface mTextRobotoTf = ResourcesCompat.getFont(this, R.font.roboto_medium);

//loading font from assest
Typeface mEmojiTypeFace = Typeface.createFromAsset(getAssets(), "emojione-android.ttf");

mPhotoEditor = new PhotoEditor.Builder(this, mPhotoEditorView)
         .setPinchTextScalable(true)
         .setDefaultTextTypeface(mTextRobotoTf)
         .setDefaultEmojiTypeface(mEmojiTypeFace)
         .build();

We can customize the properties in the PhotoEditor as per our requirement

Property Usage
setPinchTextScalable() set false to disable pinch to zoom on text insertion.By default its true
setDefaultTextTypeface() set default text font to be added on image
setDefaultEmojiTypeface() set default font specifc to add emojis

That's it we are done with setting up our library

Drawing

We can customize our brush and paint with different set of property. To start drawing on image we need to enable the drawing mode

Type Method
Enable/Disable mPhotoEditor.setBrushDrawingMode(true);
Brush Size (px) mPhotoEditor.setBrushSize(brushSize)
Color Opacity (In %) mPhotoEditor.setOpacity(opacity)
Brush Color mPhotoEditor.setBrushColor(colorCode)
Brush Eraser mPhotoEditor.brushEraser()

Note: Whenever we set any property of a brush for drawing it will automatically enable the drawing mode

Filter Effect

We can apply inbuild filter to the source images using

mPhotoEditor.setFilterEffect(PhotoFilter.BRIGHTNESS);

We can also apply custom effect using Custom.Builder

For more details check Custom Filters

Text

We can add the text with inputText and colorCode like this

mPhotoEditor.addText(inputText, colorCode);

It will take default fonts provided in the builder. If we want different fonts for different text we can set typeface with each text like this

mPhotoEditor.addText(mTypeface,inputText, colorCode);

In order to edit the text we need the view, which we will receive in our PhotoEditor callback. This callback will trigger when we Long Press the added text

mPhotoEditor.setOnPhotoEditorListener(new OnPhotoEditorListener() {
           @Override
           public void onEditTextChangeListener(View rootView, String text, int colorCode) {
               
           }
       });

Now we can edit the text with a view like this

mPhotoEditor.editText(rootView, inputText, colorCode);

If you want more customization on text. Please refer the wiki page for more details.

Emoji

We can add the Emoji by PhotoEditor.getEmojis(getActivity()); which will return a list of emojis unicode.

mPhotoEditor.addEmoji(emojiUnicode);

It will take default fonts provided in the builder. If we want different Emoji fonts for different emoji we can set typeface with each Emoji like this

mPhotoEditor.addEmoji(mEmojiTypeface,emojiUnicode);

Adding Images/Stickers

We need to provide a Bitmap to add our Images mPhotoEditor.addImage(bitmap);

Undo and Redo

  mPhotoEditor.undo();
  mPhotoEditor.redo();

Deleting

For deleting a Text/Emoji/Image we can click on the view to toggle the view highlighter box which will have a close icon. So, by clicking on the icon we can delete the view.

Saving

We need to provide a file with callback method when edited image is saved

 mPhotoEditor.saveAsFile(filePath, new PhotoEditor.OnSaveListener() {
                 @Override
                 public void onSuccess(@NonNull String imagePath) {
                    Log.e("PhotoEditor","Image Saved Successfully");
                 }

                 @Override
                 public void onFailure(@NonNull Exception exception) {
                     Log.e("PhotoEditor","Failed to save Image");
                 }
             });

For more detail check Saving

How to contribute?

Questions? 🤔

Hit me on twitter Twitter Medium Facebook

FAQ

Can I use this library in my app for free?

Yes. It's an open-source library and free to use. If this library has saved your time then showing a little credit will increase my motivation towards making the library better :)

Does it support the CROP feature?

Currently, No. I started to build in branch PE-79. But due to time constraint, I drop the idea. Any PR related to CROP is welcomed :)

Facing issues in applying Filter?

The filter effect is applied using GlSurfaceView and the implementation of this feature causing a lot of issues. Need to think of some other alternative solution. Here is the issue list.

Does is support in other platforms (iOS, Web, Flutter)?

No. Currently, the focus is on making the android library better. We don't have any plans for other Platform.

Other Know Issues

Image Scaling.
Memory Issue in Filter.

Who is using PhotoEditor?

  1. Best Quotes & Status 2019 (99000+ Collection)
  2. Pixxo

Note: I will be happy to add your app to the list. Please reach out to me with details. You know how to reach me :)

Credits

This project is inspired from PhotoEditorSDK

Buy a cup of coffee

If you found this project helpful or you learned something from the source code and want to thank me, consider buying me a cup of ☕️ BuyMeACoffee

MIT License

Copyright (c) 2020 Burhanuddin Rashid

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.

Comments
  • Make only one view selectable at a time (PE-219)

    Make only one view selectable at a time (PE-219)

    Fixes https://github.com/burhanrashid52/PhotoEditor/issues/219:

    • Consolidates editor state into an object, which is accessible by the editor and all multi-touch listeners. Follows Model-View-Controller pattern.
    • Changes logic to only select one sticker, text, or emoji at a time.
    • Updates some formatting.
    opened by lucianocheng 35
  • Add basic shapes: oval and rectangle

    Add basic shapes: oval and rectangle

    I propose a basic implementation of adding oval and rectangle to an image. I added this as alternative shapes to the BrushDrawingView (default being the existing free hand). Paths are simply drawn depending on the selected tool.

    Maybe you thought about this feature differently, please do comment if I need to revise my implementation.

    I updated the demo app and added tests and documentation as well. I attach a view of the new tools in the toolbar and the rendering of such shapes. Icons are kinda trivial but understandable :-)

    Screenshot_1623225994

    Resolves #72

    1.5.0 
    opened by stephanepechard 31
  • PE-406: Convert tests to Kotlin

    PE-406: Convert tests to Kotlin

    • Adds Kotlin dependency to gradle
    • Converts integration and unit tests to Kotlin using the Android Studio "convert java to Kotlin" feature
    • Fixes bugs that happened after conversion
    opened by lucianocheng 28
  • Image not saving

    Image not saving

    Great work! Very useful.

    I have cloned the repository and ran the sample app. Image is not saving even on pressing the save button.

    If I capture the image, choose the image from the gallery or use the default image for the PhotoEditorView , save option doesn't works.

    mProgressDialog is not removing. I checked the image and found the file is created with name 1527754743495.png but no output is written in it.

    I tried rebooting the phone but not working.

    Here are the logs:

    Device: Nexus 5x OS version: 8.1.0

    05-31 13:49:03.497 8982-8982/com.burhanrashid52.imageeditor D/PhotoEditor: Image Path: /storage/emulated/0/1527754743495.png
    05-31 13:49:03.618 8982-8989/com.burhanrashid52.imageeditor I/zygote64: Do partial code cache collection, code=47KB, data=58KB
        After code cache collection, code=47KB, data=58KB
        Increasing code cache capacity to 256KB
        Compiler allocated 4MB to compile void android.view.View.<init>(android.content.Context, android.util.AttributeSet, int, int)
    05-31 13:49:03.818 8982-8989/com.burhanrashid52.imageeditor I/zygote64: Compiler allocated 7MB to compile void android.widget.TextView.<init>(android.content.Context, android.util.AttributeSet, int, int)
    05-31 13:49:03.838 8982-8989/com.burhanrashid52.imageeditor I/zygote64: Do full code cache collection, code=124KB, data=79KB
    05-31 13:49:03.839 8982-8989/com.burhanrashid52.imageeditor I/zygote64: After code cache collection, code=78KB, data=39KB
    
    bug 
    opened by Anurag--Singh 28
  • Make the ImageView customisable.

    Make the ImageView customisable.

    Is your feature request related to a problem? Please describe. Currently, I'm working on a react-native library that is using this library in android. I'm interested in using react-native's ImageView implementation as the resource but the property resource is not assignable(Kotlin).

    Describe the solution you'd like I think just making the property assignable will give the possibility to the library to use a custom image view other than android's ImageView

    Describe alternatives you've considered

    Additional context I can open a PR for that if you wish since I urgently need it.

    question Stale 
    opened by gilons 14
  • New icon / logo

    New icon / logo

    Hi, I am a graphic designer, I want to help others in graphic design.

    After I reviewed your project, you have no logo on this project. Therefore I want to contribute to this project by creating a new logo / icon. what do you think?

    opened by mansya 14
  • Solution to Bitmap not available when needed for Draw on buildBitmap

    Solution to Bitmap not available when needed for Draw on buildBitmap

    Issue #374 forced me to try to understand what was happening that was breaking the save of Bitmaps.

    It happens that in PhotoSaverTask.java in captureView(view) method a blank Bitmap is generated, and used in a new Canvas to be filled by the PhotoeditorView.

    It seems that if this process happens too quickly, the Bitmap can't be generated quickly enough to be used, so it crashes everything.

    I finally understood the main issue when I was debugging and when in RUN mode it would crash, but not in DEBUG mode.... JUST BECAUSE the debugger "pauses" when asked, giving it time in background to end the bitmap creation.

    So I added an optional delay (default is ZERO, ok?) that enters just after the bitmap object creation, and before it's subsequential use.

    Also, I removed the bitmap object blank creation from inside captureView, as we want it to be created as soon as possible and as far as possible from it's final use.

    so... in SaveSettings, we now can set how many milliseconds between creating the createBitmap and the draw.

    opened by anderbytes 13
  • Creating setShadow to TextView (to be used from code)

    Creating setShadow to TextView (to be used from code)

    I wasn't able to test it as I didn't succeed on linking my Android Studio Kotlin project to locally implement the PhotoEditor Intellij project as a dependency on my Android app (sadly), but I'd like to propose this change as it seems simple (as others that may contribute in the future) related to TextStyling

    Please test it or fix it if I forgot anything ;-)

    1.5.0 
    opened by anderbytes 13
  • issue when applyng filter

    issue when applyng filter

    When applying filter to portrait image ... it takes black borders automatically to left and right of image and adds those unwanted border in the filtered image. please help

    question 
    opened by romaankhanAndroid 13
  • Bug  while adding dependencies

    Bug while adding dependencies

    has i add dependencies implementation 'ja.burhanrashid52:photoeditor:0.3.3'

    I get error

    Could not resolve all dependencies for configuration ':app:debugRuntimeClasspath'. Could not load module metadata from C:\Users\Vinit\.gradle\caches\modules-2\metadata-2.53\descriptors\com.android.support\support-v13\27.1.1\6740fe48b44caed96d7f50b66ff7b0b5\descriptor.bin Unexpected metadata type found.

    opened by vinit-poojary 13
  • Brush color changes after saving image...

    Brush color changes after saving image...

    Hello there... I found one bug when using brush.... Suppose i draw something on view in one color and again i draw something using brush in other color (overlapping first one), when we save image brush color automatically changes. Please refer following screenshots. Before saving.... img_20180612_114927 After saving image(red color automatically changes to navy blue) img_20180612_114901 Please check this bug.....

    bug fixed 
    opened by ervinod 13
  • The Opacity doesn't work in the demo

    The Opacity doesn't work in the demo

    I report a problem in the functionality of setting the opacity of the specific seekBar for this one.

    I believe the problem is in the function: Class: ShapeBSFragment in the onProgressChanged function

    opened by gabrielnakhata 0
  • Add functionality to track bitmap information and events

    Add functionality to track bitmap information and events

    Hello! Thank you for this awesome library!

    We are strongly using it for our Story functionality such as on Instagram, and we are willing to help to modify, improve and add more functionality to this library.

    Our use-case, that made us create this merge-request, includes the following points:

    • Add the ability to attach buttons/links to a story
    • Add the ability to edit the information of these attachments during creation
    • Add the ability to recreate clickable areas on these attachments and do something if the user interacts

    So, changes that we added to the library include these points:

    • Made ViewType a sealed interface instead of enum and used the correct naming conventions for children.
    • Added a new ViewType, called Custom<T>, that takes generic data as a parameter/property, this ViewType can be passed with the bitmap through photoEditor.addImage(bitmap, viewType), if nothing is passed, ViewType.Image will be used by default.
    • Changed OnPhotoEditorListener interface to return the rootView on each event, so we can extract the Rect and other information about the view and its properties
    • OnPhotoEditorListener.onAddViewListener is now called through rootView.post {} to make sure that this event is fired only after the view finishes its creation and setup

    For now, this is enough to extract view's data and track it, also to create clickable ghosts during story preview.

    I hope this Pull Request will be accepted, it would be awesome to have a review first, so I could adjust any errors since I'm not that well-involved into this library and can miss some moments. Thank you!

    opened by tamimattafi 1
  • saveAsBitmap with error

    saveAsBitmap with error

    I'm trying to execute saveAsBitmap but I often get this error:

    E/ImageFilterView: onDrawFrame: android.graphics.Bitmap@de42880 E/PhotoEditorView: saveFilter: android.graphics.Bitmap@de42880 D/PhotoEditorView: onBitmapLoaded() called with: sourceBitmap = [android.graphics.Bitmap@de42880] onBitmapLoaded() called with: sourceBitmap = [android.graphics.Bitmap@de42880] E/AndroidRuntime: FATAL EXCEPTION: AsyncTask #1 Process: com.company.myapp, PID: 24958 java.lang.RuntimeException: An error occurred while executing doInBackground() at android.os.AsyncTask$3.done(AsyncTask.java:353) at java.util.concurrent.FutureTask.finishCompletion(FutureTask.java:383) at java.util.concurrent.FutureTask.setException(FutureTask.java:252) at java.util.concurrent.FutureTask.run(FutureTask.java:271) at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:245) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) Caused by: java.lang.IndexOutOfBoundsException: Index: 1, Size: 0 at java.util.ArrayList.get(ArrayList.java:437) at android.view.ViewGroup.getAndVerifyPreorderedView(ViewGroup.java:3530) at android.view.ViewGroup.dispatchDraw(ViewGroup.java:4001) at android.view.View.draw(View.java:19003) at android.view.ViewGroup.drawChild(ViewGroup.java:4218) at android.view.ViewGroup.dispatchDraw(ViewGroup.java:4004) at android.view.View.draw(View.java:19138) at ja.burhanrashid52.photoeditor.PhotoSaverTask.captureView(PhotoSaverTask.java:161) at ja.burhanrashid52.photoeditor.PhotoSaverTask.buildBitmap(PhotoSaverTask.java:104) at ja.burhanrashid52.photoeditor.PhotoSaverTask.saveImageAsBitmap(PhotoSaverTask.java:76) at ja.burhanrashid52.photoeditor.PhotoSaverTask.doInBackground(PhotoSaverTask.java:68) at ja.burhanrashid52.photoeditor.PhotoSaverTask.doInBackground(PhotoSaverTask.java:23) at android.os.AsyncTask$2.call(AsyncTask.java:333) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:245)  at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)  at java.lang.Thread.run(Thread.java:764) 

    my code is as simple as:

    val onSaveBMP: OnSaveBitmap = object: OnSaveBitmap {
                        override fun onBitmapReady(saveBitmap: Bitmap?) { }
                        override fun onFailure(e: Exception?) { }
                    }
    
                    mPhoto.saveAsBitmap(onSaveBMP)
    

    really don't know what is happenin. At first I thought it was something at the moment I tried to use the saveBitmap object, but no... even this code above is causing the crash.

    very weird. It is as if the Bitmap can't be generated for some reason.

    bug 
    opened by anderbytes 35
  • Cannot add a fixed view

    Cannot add a fixed view

    By a fixed view I mean a view which you cannot move. with no movement option and no close button on the top left. Is there any hidden option for doing so?

    enhancement 
    opened by amiralichesser3 3
Releases(v.2.0.0)
  • v.2.0.0(Jan 22, 2022)

  • v.1.5.1(Jul 31, 2021)

    • New : #379 Should disallow drawing on left or right of the image using photoEditor.setClipSourceImage(true)
    • New/Break : #383 Get a callback when the image source is touched onTouchSourceImage(MotionEvent event);
    Source code(tar.gz)
    Source code(zip)
  • v.1.5.0(Jul 10, 2021)

    • Deprecated : setBrushSize() , setOpacity() and setBrushColor. Use ShapeBuilder
    • New : Drawing Shapes using ShapeBuilder. Support Line, Brush, Oval and Rectangle out of the box.Deprecated
    • New : Allowing to add text shadow using TextStyleBuilder.withTextShadow()
    • New : Underline, strike out text.
    Source code(tar.gz)
    Source code(zip)
  • v.1.1.4(May 25, 2021)

    • Fixed : #351 Internal Refactoring
    • Removed: (Breaking Change) PhotoEditor.getEmoji() is no longer part of the library and it's now moved to the sample app.
    Source code(tar.gz)
    Source code(zip)
  • v.1.1.2(May 10, 2021)

  • v.1.1.1(Mar 13, 2021)

  • v.1.1.0(Nov 1, 2020)

  • v.1.0.0(Dec 12, 2019)

  • v.0.4.0(Jun 13, 2019)

    • New : Added compress quality and format in save settings
    • New : Added Text style builder for add and edit text
    • New : Bumped support version to 28
    • Removed : All Deprecated methods
    • Test : Added test cases for BrushDrawingView with 100% code coverage
    Source code(tar.gz)
    Source code(zip)
  • v.0.3.3(Aug 28, 2018)

  • v.0.3.2(Aug 8, 2018)

    • New: Disable clearAllViews onSave #54 #49 #42 and PR #71
    • Fixed: ViewType in onRemoveViewListener() #50
    • Fixed: Wrong ViewType on onStartViewChangeListener #74
    • Fixed: clearHelperBox() #37
    • Fixed: Brush color changes after saving image #52
    • Fixed: Glide null bitmap issue #59
    Source code(tar.gz)
    Source code(zip)
  • v.0.2.1(Jun 4, 2018)

  • v.0.2.0(May 29, 2018)

    • New : Add filter using mPhotoEditor.setFilterEffect(PhotoFilter.BRIGHTNESS); #4
    • New : Add Custom filter using CustomEffect
    CustomEffect customEffect = new CustomEffect.Builder(EffectFactory.EFFECT_BRIGHTNESS)
                    .setParameter("brightness", 0.5f)
                    .build();
    mPhotoEditor.setFilterEffect(customEffect);
    
    • Change : saveImage(String, OnSaveListener) is deprecated use saveAsFile(String, OnSaveListener)
    • New : You can save image as bitmap by using saveAsBitmap(String, OnSaveListener) #9 #19
    • Fixed : save image without transparency #35
    Source code(tar.gz)
    Source code(zip)
  • v.0.1.1(May 25, 2018)

Owner
Burhanuddin Rashid
Software Engineer, Open Source enthusiast, Google Developer Expert in Flutter
Burhanuddin Rashid
Image-search - An Image search android app with offline support

image-search Image search app built using bing image search API via paging 3. Fe

Suraj Vaishnav 3 Feb 17, 2022
Chandrasekar Kuppusamy 799 Nov 14, 2022
AndroidPhotoFilters aims to provide fast, powerful and flexible image processing instrument for creating awesome effects on any image media.

PhotoFiltersSDK PhotoFiltersSDK aims to provide fast, powerful and flexible image processing instrument for creating awesome effects on any image medi

Zomato 2.5k Dec 23, 2022
A Flutter plugin thats support share files to social media like TikTok, Instagram, Facebook, WhatsApp, Telegram and more others...

Social Share Kit A Flutter plugin that's support share files to social media like Tiktok, Instagram, Facebook, WhatsApp, Telegram and more. This plugi

Kaique Gazola 2 Sep 2, 2022
💳 A quick and easy flip view through which you can create views with two sides like credit cards, poker cards etc.

The article on how this library was created is now published. You can read it on this link here. →. ?? EasyFlipView Built with ❤︎ by Wajahat Karim and

Wajahat Karim 1.3k Dec 14, 2022
Road Runner is a library for android which allow you to make your own loading animation using a SVG image

Road Runner Road Runner is a library for android which allow you to make your own loading animation using a SVG image Sample video View in Youtube Dem

Adrián Lomas 1.2k Nov 18, 2022
MIPagerTransformer is an android library that provides a seamless image transformation experience.

MIPagerTransformerView -- MIPagerTransformer is an android library that provides a seamless image transformation experience. Overview ?? Shutter ?? Pa

MindInventory 21 Sep 17, 2022
A library support circular imageview with rotation animation

Circular Imageview with Rotate Animation This is a fast and efficient open source custom imageview for Android that allow to easy implement disc anima

Nhien Nguyen 5 Jul 24, 2022
Material Design text field that comes in a box, based on (OLD) Google Material Design guidelines.

TextFieldBoxes A new Material Design text field that comes in a box, based on Google Material Design guidelines. ???? 中文看这里 UPDATE NOTICE 1.4.5 Releas

Mark Wang 769 Jan 7, 2023
An amazing and convenient Android image slider.

Android Image Slider ![Gitter](https://badges.gitter.im/Join Chat.svg) This is an amazing image slider for the Android platform. I decided to open sou

代码家 5.6k Jan 7, 2023
Support extension to use Android ViewBinding quickly and smooth transform from kotlin-synthetic-extension.

ViewBinding Delegate Extension Support extension to use Android ViewBinding quickly and smooth transform from kotlin-synthetic-extension. Binding inst

Cuong V. Nguyen 3 Dec 13, 2021
EtsyBlur is an Android library that allows developers to easily add a glass-like blur effect implemented in the Etsy app.

EtsyBlur EtsyBlur is an Android library that allows developers to easily add a glass-like blur effect implemented in the past Etsy app. Try out the sa

Manabu S. 755 Dec 29, 2022
Android library to display a few images in one ImageView like avatar of group chat. Made by Stfalcon

MultiImageView Library for display a few images in one MultiImageView like avatar of group chat Who we are Need iOS and Android apps, MVP development

Stfalcon LLC 468 Dec 9, 2022
Android Library To Create Button With Multi Reactions like Facebook or Linkedin

ReactButton Android Library written in Java to Create ReactButton with Multi Reactions like Facebook or Linkedin ?? Default Reactions ?? Custom Reacti

Amr Hesham 103 Dec 15, 2022
A lightweight android library that allows to you create custom fast forward/rewind animations like on Netflix.

SuperForwardView About A lightweight android library that allows to you create custom fast forward/rewind animations like on Netflix. GIF Design Credi

Ertugrul 77 Dec 9, 2022
FPSAnimator is very easy animation library for Android TextureView and SurfaceView.

FPSAnimator A simple but powerful Tween / SpriteSheet / ParabolicMotion / animation library for Android TextureView and SurfaceView. Features The cont

Masayuki Suda 756 Dec 30, 2022
This library provides easy ways to add onboarding or pager screens with different animation and indicators.

WalkThroughAndroid Make amazing OnBoarding Screens easily for your app with different colorful animations, fonts, styles, and many more. Customize you

MindInventory 33 Sep 9, 2022
Material image loading implementation

MaterialImageLoading Material image loading implementation Sample And have a look on a sample Youtube Video : Youtube Link [] (https://www.youtube.com

Florent CHAMPIGNY 392 Nov 17, 2022
Animate a strike over any image to indicate on/off states. As seen in the Material Guidelines.

StrikedImageView Animate a strike over any image to indicate on/off states. As seen in the Material Guidelines. Gradle allprojects { repositories

null 9 Sep 21, 2022