Code Monkey home page Code Monkey logo

particlesdrawable's Introduction

ParticlesDrawable

Draws random flying particles in space forming constellations.

Min API level 9.

Contains:

  • ParticlesDrawable, which is an Animatable Drawable.
  • ParticlesView, which is a View.

Both have the same public methods for customization and may be inflated using the same customization xml attributes.

Add to your project

Maven Central

dependencies {
    compile 'com.github.doctoror.particlesdrawable:library:[version]'
}

Screenshots

screenshot

Usage

ParticlesDrawable usage example

private final ParticlesDrawable mDrawable = new ParticlesDrawable();

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_demo);
    findViewById(R.id.view).setBackground(mDrawable);
}

@Override
protected void onStart() {
    super.onStart();
    mDrawable.start();
}

@Override
protected void onStop() {
    super.onStop();
    mDrawable.stop();
}

Customization

Here is a list of all attributes, set with default values

<com.doctoror.particlesdrawable.ParticlesView
    app:minDotRadius="1dp"
    app:maxDotRadius="3dp"
    app:lineThickness="1dp"
    app:lineDistance="86dp"
    app:numDots="60"
    app:dotColor="@android:color/white"
    app:lineColor="@android:color/white"
    app:frameDelayMillis="10"
    app:stepMultiplier="1"/>

The conventional getters and setters are also available.

Since API 24, you may also customize the Drawable in xml. For example, create drawable-v24/particles_120dots.xml

<?xml version="1.0" encoding="utf-8"?>
<!-- Some versions of Android Studio may show false warning,
"Element drawable must be declared", but it works fine when
compiling and running -->
<drawable
    class="com.doctoror.particlesdrawable.ParticlesDrawable"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    app:numDots="120"/>

And inflate, like

mDrawable = (ParticlesDrawable) ContextCompat
        .getDrawable(this, R.drawable.particles_120dots);

Configuration Demo

Particle Constellations Live Wallpaper has a great configuration screen which allows you to quickly see through what can you do with the library:

Video

License

Copyright 2017 Yaroslav Mytkalyk

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

particlesdrawable's People

Contributors

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