我看过here而且我不太能理解。我需要为饼图实现实时图表。我也看了here。
void update(int id, final int value) {
value_all = value;
String heart = String.valueOf(value);
Log.d("Blink Hai", heart);
if (textView != null && linearLayout != null) {
textView.setText(heart);
if (value > 50 && value < 60) {
linearLayout.setBackgroundColor(Color.BLACK);
} else if (value > 60 && value < 90) {
linearLayout.setBackgroundColor(Color.BLUE);
} else if (value > 90 && value < 100) {
linearLayout.setBackgroundColor(Color.RED);
}
}
所以现在,根据收到的值,屏幕的背景颜色是chaning,我还会使用textview来显示值。我需要图表实时更新这个值。 update()函数每2秒从另一个类调用一次。