1

MPAndroidChartを使用しています

サービスで BarEntry を使用しており、意図を介して yvalues をフラグメントにプッシュする必要があります。BarEntry は Parcelable を実装していないため、これをどのように処理できるかわかりません。

どうもありがとう !

4

1 に答える 1

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);
于 2015-02-24T15:04:39.630 に答える