我想使用MPAndroidChart创建一个BarChart,但是我收到以下错误java.lang.ClassCastException: com.github.mikephil.charting.data.Entry cannot be cast to com.github.mikephil.charting.data.BarEntry
我首先从不同的活动中获取数据并使用它。
第一项活动:
ArrayList<BarEntry> temperature = new ArrayList<>();
for (int i = 0; i < temp.length(); i++) {
float temp_data = Float.parseFloat(temp.getJSONObject(i).getString("value"));
float humid_data = Float.parseFloat(humid.getJSONObject(i).getString("value"));
float time_data = Float.parseFloat(time.getJSONObject(i).getString("time"));
temperature.add(new BarEntry(time_data, temp_data));
humidity.add(new BarEntry(time_data, humid_data));
}
Intent intent = new Intent(itemView.getContext(), DeviceDataReport.class);
intent.putExtra("temperatureData", temperature);
//put other extras
context.startActivity(intent);
在DeviceDataReport中:
ArrayList<BarEntry> temperature = new ArrayList<>();
if (extras != null) {
temperature = extras.getParcelableArrayList("temperatureData");
//get other data
}
temperatureChart = (BarChart) findViewById(R.id.chart_temp);
BarDataSet set1;
if (temperatureChart.getData() != null &&
temperatureChart.getData().getDataSetCount() > 0) {
set1 = (BarDataSet) temperatureChart.getData().getDataSetByIndex(0);
set1.setValues(temperature);
temperatureChart.getData().notifyDataChanged();
temperatureChart.notifyDataSetChanged();
} else {
set1 = new BarDataSet(temperature, "The year 2017"); //this is where error occurs
ArrayList<IBarDataSet> dataSets = new ArrayList<IBarDataSet>();
dataSets.add(set1);
BarData data = new BarData(dataSets);
temperatureChart.setData(data);
}
我没有看到任何我只使用Entry
代替BarEntry
的地方。我的xml也说BarChart不是LineChart。
答案 0 :(得分:0)
使用MPAndroidChart 3.0.1
我很遗憾地说这看起来像是BarEntry
的不完整实现。如果您检查源,可以看到以下内容:
BarEntry
扩展Entry
Entry
实施Parcelable
BarEntry
没有自己的Parcelable<Creator>
因此,当您序列化到一个地块,然后反序列化时,您将获得List<Entry>
而不是List<BarEntry>
: - )
目前除了解决这个问题外,你无能为力。
您可以借此重构以实现更好的图层分离。 BarEntry
是视图图层或视图模型图层的成员。您应该拥有一个仅仅是数据对象的清晰模型层,而不是传递BarEntry
。您可以轻松地在Intent中传递此模型层的列表或数组,并且消费者可以根据需要转换为BarEntry
。
或者,创建数据源的抽象。类似TemperatureRepository
类的东西。然后,使用此数据的Activity和Fragments可以从存储库而不是从Intent获取数据。