Coder Social home page Coder Social logo

maxfork / android-loading-dots Goto Github PK

View Code? Open in Web Editor NEW

This project forked from razaghimahdi/android-loading-dots

0.0 0.0 0.0 343 KB

A library which allows you to have some beautiful loading with dots, for both Java and Kotlin in XML

Home Page: https://github.com/razaghimahdi/Android-Loading-Dots

License: Apache License 2.0

Java 100.00%

android-loading-dots's Introduction

Android-Loading-Dots

A library which allows you to have some beautiful loading with dots, for both Java and Kotlin in XML,

If you need Jetpack Compose version of this library then click here.

Step 1. Add it in your root build.gradle at the end of repositories:

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

Step 2. Add the dependency

dependencies {
        implementation 'com.github.razaghimahdi:Android-Loading-Dots:1.3.0'
}

Step 3. How to use

XML:

<com.razzaghimahdi78.dotsloading.linear.LoadingWavy
	android:id="@+id/loadingWavy"
	android:layout_width="wrap_content"
	android:layout_height="wrap_content"
	app:dots_color="@color/colorPrimaryDark"
	app:dots_count="3"
	app:dots_duration="500"
	app:dots_size="medium" />

<com.razzaghimahdi78.dotsloading.linear.LoadingFady
	android:layout_width="wrap_content"
	android:layout_height="wrap_content"
	app:dots_color="@color/colorPrimaryDark"
	app:dots_count="3"
	app:dots_duration="500"
	app:dots_size="medium" />

<com.razzaghimahdi78.dotsloading.linear.LoadingBiggy
	android:layout_width="wrap_content"
	android:layout_height="wrap_content"
	app:dots_color="@color/colorPrimaryDark"
	app:dots_count="3"
	app:dots_duration="500"
	app:dots_size="medium" />

<com.razzaghimahdi78.dotsloading.linear.LoadingScaly
	android:layout_width="wrap_content"
	android:layout_height="wrap_content"
	app:dots_color="@color/colorPrimaryDark"
	app:dots_count="5"
	app:dots_duration="400"
	app:dots_size="medium" />

<com.razzaghimahdi78.dotsloading.linear.LoadingDancing
	android:layout_width="wrap_content"
	android:layout_height="wrap_content"
	app:dots_color="@color/colorPrimaryDark"
	app:dots_count="3"
	app:dots_duration="800"
	app:dots_size="medium" />

<com.razzaghimahdi78.dotsloading.circle.LoadingCircleFady
	android:layout_width="wrap_content"
	android:layout_height="wrap_content"
	app:dots_color="@color/colorPrimaryDark"
	app:dots_duration="800"
	app:dots_size="medium" />

<com.razzaghimahdi78.dotsloading.circle.LoadingCircleRotation
	android:layout_width="wrap_content"
	android:layout_height="wrap_content"
	app:dots_color="@color/colorPrimaryDark"
	app:dots_duration="800"
	app:dots_size="medium" />

Step 4. How to initial

LoadingWavy LoadingWavy=findViewById(R.id.loadingWavy);
LoadingWavy.setSize(DotSize.MEDIUM);
LoadingWavy.setDotsCount(3);
LoadingWavy.setDuration(400);
LoadingWavy.setColor(Color.parseColor("#FF3700B3"));

OR

val LoadingWavy: LoadingWavy = findViewById(R.id.loadingWavy)
LoadingWavy.setSize(DotSize.MEDIUM)
LoadingWavy.setDotsCount(3)
LoadingWavy.setDuration(400)
LoadingWavy.setColor(Color.parseColor("#FF3700B3"))

Note

There are 5 type of sizes:

public enum DotSize {
    TINY,
    SMALL,
    MEDIUM,
    BIG,
    HUGE
}
record.mp4

Developed by Mahdi Razzaghi Ghaleh

android-loading-dots's People

Contributors

razaghimahdi 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.