Back to project page AndroidGraph.
The source code is released under:
MIT License
If you think the Android project AndroidGraph 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.nimble.android_graph.Graph_Base; /*from www. j a v a 2s . c o m*/ import android.content.Context; import android.util.AttributeSet; /** * Created by Michael Leith on 17/07/2014. */ public abstract class GraphView extends GraphTouchEvent { protected int startPointOffset = 0; //How much the start point should be changed by touch events. protected float xSensitivity = 50; protected int xChange = 10; protected float oldX, oldY; public GraphView(Context context) { super(context); } public GraphView(Context context, AttributeSet attr) { super(context, attr); } }