Android Graphing
-
Yo, Please can anyone help out? I want to plot/draw different graphs like linear, sine, cosine, bar, etc on the android. I don't want to use any third party tool; I would like to start from scratch. Please I have searched online but haven't found any helpful tutorials or steps to take. :confused: Thanks in advance. :)
-
Yo, Please can anyone help out? I want to plot/draw different graphs like linear, sine, cosine, bar, etc on the android. I don't want to use any third party tool; I would like to start from scratch. Please I have searched online but haven't found any helpful tutorials or steps to take. :confused: Thanks in advance. :)
For simple graphics, you can extend the View class, and override the onDraw method. View is the base-class of all other controls. See developer.android.com/guide/topics/ui/custom-components.html and androidcompetencycenter.com/2009/08/creatingcustomviews/ for more information.
-- MizardX (so)