Home

Awesome

What's Particle ?

It's a cool animation which can use in splash or anywhere else.

Demo

Markdown

Article

手摸手教你用Canvas实现简单粒子动画

Attributes

nameformatdescription中文解释
pv_host_textstringset left host text设置左边主文案
pv_host_text_sizedimensionset host text size设置主文案的大小
pv_particle_textstringset right particle text设置右边粒子上的文案
pv_particle_text_sizedimensionset particle text size设置粒子上文案的大小
pv_text_colorcolorset host text color设置左边主文案颜色
pv_background_colorcolorset background color设置背景颜色
pv_text_anim_timeintegerset particle text duration设置粒子上文案的运动时间
pv_spread_anim_timeintegerset particle text spread duration设置粒子上文案的伸展时间
pv_host_text_anim_timeintegerset host text displacement duration设置左边主文案的位移时间

Usage

Define your banner under your xml :

<me.wangyuwei.particleview.ParticleView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    pv:pv_background_color="#2E2E2E"
    pv:pv_host_text="github"
    pv:pv_host_text_size="14sp"
    pv:pv_particle_text=".com"
    pv:pv_particle_text_size="14sp"
    pv:pv_text_color="#FFF"
    pv:pv_text_anim_time="3000"
    pv:pv_spread_anim_time="2000"
    pv:pv_host_text_anim_time="3000" />

Start animation :

mParticleView.startAnim();

Add animation listener to listen the end callback :

mParticleView.setOnParticleAnimListener(new ParticleView.ParticleAnimListener() {
    @Override
    public void onAnimationEnd() {
        Toast.makeText(MainActivity.this, "Animation is End", Toast.LENGTH_SHORT).show();
    }
});

Import

Step 1. Add it in your project's build.gradle at the end of repositories:

repositories {
    maven {
        url 'https://dl.bintray.com/wangyuwei/maven'
    }
}

Step 2. Add the dependency:

dependencies {
  compile 'me.wangyuwei:ParticleView:1.0.4'
}

About Me

Weibo

Blog

QQ Group 欢迎讨论

479729938

##License

Copyright [2016] [JeasonWong of copyright owner]

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.