Coder Social home page Coder Social logo

sirlordpouya / loadingfragment Goto Github PK

View Code? Open in Web Editor NEW
8.0 3.0 0.0 932 KB

A Simple full screen LoadingFragment for Android apps

Home Page: https://pouyaheydari.com

License: Apache License 2.0

Kotlin 100.00%
android android-library animation dialog loading-animations lottie lottie-android lottie-animation loading-fragment loading-library

loadingfragment's Introduction

Android Loading Fragment

API Build Status

A Simple full screen LoadingFragment for Android apps

Usage:

To show loading

private fun showLoading() {
    LoadingFragment.getInstance().show(supportFragmentManager, "TAG")
}

To hide loading dialog

private fun hideLoading() {
  LoadingFragment.getInstance().dismissDialog()
}

To change the animation

LoadingFragment uses Lottie to show animations. to change the default animation, first put your Lottie json file in assets folder, then:

private fun showLoading() {
    LoadingFragment.getInstance(fileName = "your_file_name.json")?.show(supportFragmentManager, "TAG")
}

To change cancelable

private fun showLoading() {
    LoadingFragment.getInstance(isCancelable = true)?.show(supportFragmentManager, "TAG")
}

To use this library in Java

private void showLoading() {
    LoadingFragment.Companion.getInstance("loading.json",false).show(getSupportFragmentManager(),"TAG");
}
private void hideLoading() {
    LoadingFragment.Companion.getInstance("loading.json",false).dismissDialog();
}

Download

Adding the dependency

Add this to your root build.gradle file:

allprojects {
    repositories {
        maven(url = "https://jitpack.io")
    }
}

Now add the dependency to your app build.gradle file:

implementation ("com.github.SirLordPouya:LoadingFragment:latest_version")

License

LoadingFragment is released under the Apache License 2.0. See LICENSE for details.

Copyright (c) 2018 Pouya Heydari

Icon is made by bqlqn from www.flaticon.com is licensed by CC 3.0 BY

loadingfragment's People

Contributors

heypouya avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.