我正在使用MPAndroidChart
我在服务中使用BarEntry,我需要通过意图将yvalues推送到片段。由于BarEntry没有实施Parcelable,我不知道如何处理这个问题。
非常感谢!
答案 0 :(得分:2)
您可以使用额外信息发送必要的信息......如果您需要多个BarEntry,这会变得很混乱。
这是发件人方:
Intent inten = new Intent(context, Main.class);
intent.putExtra("value", 23);
intent.putExtra("index", 1);
接收方:
Bundle bundle = intent.getExtras();
Float value = bundle.getFloat("value");
int index = bundle.getInt("index");
BarEntry barEntry = new BarEntry(value, index);