嘿伙计我有一个由achartengine
生成的图表,并且从intent
返回并在主要源代码中启动。当我启动Intent
时,它会打开条形图,但它会将其打开并替换其他所有内容。我尝试在该活动中制作clear button
节目,但我遇到了麻烦。
所以我的问题是,当我开始一项新活动时,如何显示一个按钮并给它属性?
大卫
更新:源代码:
这是调用特定函数后函数内的调用:
/************
* define new object with BarGraph class to get results and than display with the bar graph
************/
BarGraph bar = new BarGraph();
/***********
* create intent with the results
************/
Intent barIntent = bar.getIntent(this, results);
/***********
* start the activity from results
***********/
startActivity(barIntent);
以下是BarGraph来源:
....包括.....
public class BarGraph {
public Intent getIntent(Context context, double [] imgResults){
double y[] = imgResults; // store results from processed image {25,10,15,20};
CategorySeries series = new CategorySeries("Pass levels (80% or lower is a fail)");
for(int i=0; i < y.length; i++){
series.add("Bar"+(i+1),y[i]);
}
....chart functions.......
Intent intent = ChartFactory.getBarChartIntent(context, dataSet, mRenderer,Type.DEFAULT);
return intent;
}
}
这将返回图表意图,在我的主要来源中,它启动它。我在设置具有该意图的相应按钮时遇到了困难。
建议和想法?