Back to project page InfoWallpaper.
The source code is released under:
MIT License
If you think the Android project InfoWallpaper listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.andreashedin.infowallpaper; //from www. j av a 2 s . co m import android.graphics.Paint.Align; public class InfoData { public int x = 150; public int y = 200; public int size = 60; public String text = ""; public String font = null; public int color = 0xccffffff; public boolean shadow = false; public boolean backdrop = false; public Align textAlign = Align.LEFT; public int order = 0; public int rotation = 0; public boolean numbersAsText = false; public String textcase = "none"; public int id = 0; public boolean increaseInfoCount = false; public int screen = -1; }