Back to project page simpleLocation.
The source code is released under:
Apache License
If you think the Android project simpleLocation 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.simpleFunctions.android.Location; /*from www. jav a 2 s.c o m*/ /** * Created by Fco Pardo on 8/20/14. */ public class screenPoints { private float x; private float y; public float getX() { return x; } public void setX(float x) { this.x = x; } public float getY() { return y; } public void setY(float y) { this.y = y; } }