Results 1 to 3 of 3
- 01-17-2012, 12:52 AM #1
Member
- Join Date
- Oct 2011
- Posts
- 5
- Rep Power
- 0
startActivity error for Android graph view
hi all,
I have a code but it doesn't work ! can you please help me on it? it will show graph in android field. but startActivity doesn't properly !! can anyone help me please ?
<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>
int DataCnt = 6;
SortedData[][] //This is an 2D array
---------------
[[FASTWEB-2012, -66, 0], [FASTWEB-1-001CA2B8E818, -85, 0], [FASTWEB-2012, -66, 5], [FASTWEB-1-001CA2B8E818, -85, 5], [FASTWEB-2012, -66, 10], [FASTWEB-1-001CA2B8E818, -85, 10]]
TerminalCount[][] ////This is an 2D array
-------------------
[[FASTWEB-2012, 3], [FASTWEB-1-001CA2B8E818, 3]]
XYMultipleSeriesDataset dataset = new XYMultipleSeriesDataset();
XYMultipleSeriesRenderer mRenderer = new XYMultipleSeriesRenderer();
switch (TermDimenSnRow) //suppose I have TermDimenSnRow = 2
{
case 1:
break;
case 2:
TimeSeries series2 = new TimeSeries("WiFi 1");
TimeSeries series3 = new TimeSeries("WiFi 2");
for( int i2 = 0; i2 < DataCnt; i2++)
{
if(TerminalCount[0][0].equals(SortedData[i2][0]))
{
int WifiRSSIVal = (Integer.parseInt(String.valueOf(SortedData[i2][1])));
int WifiTimeVal = (Integer.parseInt(String.valueOf(SortedData[i2][2])));
series2.add(WifiRSSIVal, WifiTimeVal);
}
}
for( int i3 = 0; i3 < DataCnt; i3++)
{
if(TerminalCount[1][0].equals(SortedData[i3][0]))
{
int WifiRSSIVal = (Integer.parseInt(String.valueOf(SortedData[i3][1])));
int WifiTimeVal = (Integer.parseInt(String.valueOf(SortedData[i3][2])));
series3.add(WifiRSSIVal, WifiTimeVal);
}
}
dataset.addSeries(series2);
XYSeriesRenderer renderer2 = new XYSeriesRenderer();
mRenderer.addSeriesRenderer(renderer2);
dataset.addSeries(series3);
XYSeriesRenderer renderer3 = new XYSeriesRenderer();
mRenderer.addSeriesRenderer(renderer3);
break;
case 3:
break;
-
-
-
-
-
case 10:
break;
Intent intent = ChartFactory.getLineChartIntent(context, dataset, mRenderer, "Graph 1");
this.startActivity(intent); //I have tried here by this (startActivity(intent))
<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> >>>>>>>>
- 01-17-2012, 01:06 AM #2
Moderator
- Join Date
- Jul 2010
- Location
- California
- Posts
- 1,619
- Rep Power
- 5
Re: startActivity error for Android graph view
Cross posted at startActivity error in for Android graph view
- 01-17-2012, 03:29 AM #3
Re: startActivity error for Android graph view
Why do they call it rush hour when nothing moves? - Robin Williams
Similar Threads
-
Error when trying to view applet in a .htm file
By deapee in forum New To JavaReplies: 7Last Post: 06-20-2011, 04:55 AM -
XML Main Layout Error Android
By JoshNerd557 in forum New To JavaReplies: 0Last Post: 04-26-2011, 04:52 AM -
How enter this mode-gui/design-view/code-view
By lse123 in forum NetBeansReplies: 0Last Post: 02-28-2010, 09:09 PM -
how to create our graph in eclipse view beanchmark?
By anirudhak in forum EclipseReplies: 1Last Post: 03-12-2009, 11:51 AM -
Updating a view using actions in a seperate view
By xcallmejudasx in forum EclipseReplies: 0Last Post: 10-24-2008, 09:24 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks