Android Open Source - stripepaper Stripe






From Project

Back to project page stripepaper.

License

The source code is released under:

MIT License

If you think the Android project stripepaper listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.tjm.stripepaper;
/* ww w.j  a  va2s.co m*/
/**
 * Created by cymak on 7/9/14.
 */
public class Stripe {
    public float size;
    public int color;
    public float speed;
    public float x;

    public Stripe(float size, float x, int color, float speed) {
        this.size = size;
        this.x = x;
        this.color = color;
        this.speed = speed;
    }
}




Java Source Code List

com.tjm.stripepaper.MyPreferencesActivity.java
com.tjm.stripepaper.MyWallpaperService.java
com.tjm.stripepaper.SetWallpaperActivity.java
com.tjm.stripepaper.Stripe.java