滚动视图内的多个图表自动向上滚动

时间:2012-12-19 19:45:27

标签: android charts achartengine

我目前正在使用AChartEngine库,我在滚动视图中有3个图表。这是我的布局文件:

     <ScrollView
        android:id="@+id/scrollViewChartLayout"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:fillViewport="true"
        android:background="@color/black" >

     <LinearLayout
         xmlns:android="http://schemas.android.com/apk/res/android"
         android:layout_width="fill_parent"
         android:layout_height="wrap_content"
         android:orientation="vertical"
         android:padding="15dp" >

         <LinearLayout
             android:id="@+id/temperatureChartLayout"
             android:layout_width="fill_parent"
             android:layout_height="0dp"
             android:orientation="vertical"
             android:paddingBottom="30dp" />

         <LinearLayout
             android:id="@+id/humidityChartLayout"
             android:layout_width="fill_parent"
             android:layout_height="0dp"
             android:orientation="vertical"
             android:paddingBottom="30dp" />

         <LinearLayout
             android:id="@+id/lightChartLayout"
             android:layout_width="fill_parent"
             android:layout_height="0dp"
             android:orientation="vertical"
             android:paddingBottom="30dp" />
    </LinearLayout>
 </ScrollView>

在我使用的渲染器中:

    renderer.setInScroll(true);
    renderer.setZoomEnabled(false, false);
    renderer.setPanEnabled(false, false);

图表绘制了相关内容但是当我使用滚动条向下滚动时,视图会在0.5秒后自动向上滚动!怎么了?

1 个答案:

答案 0 :(得分:2)

我自己解决:我正在重绘所有新数据的观点(我的数据不断到来)。只需要使用mChartView.repaint();重绘图表。