我正在使用WilliamChart库来显示一些统计信息。问题是我无法使其可滚动。
我找到了以下方法,但它无效:
setHorizontalScrollBarEnabled(true)
有人知道如何解决这个问题吗?
提前致谢
答案 0 :(得分:1)
@pindleskin:当我使用AndroidPLot Chart时,我遇到了同样的问题。在xml中尝试这种方式。我希望它会帮助你
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="match_parent"
>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
>
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="230dp" >
<RelativeLayout
android:id="@+id/RLayout_chart_container"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="230dp" >
///// Add your Chart Here
</RelativeLayout>
</RelativeLayout>
</HorizontalScrollView>
</ScrollView>
</LinearLayout>