我正在尝试在滚动视图中创建一个 achartengine 图表,但它不会显示!它只是显示黑屏,但不会崩溃或任何东西。问题是如果我只是将我的标签更改为图表显示就好了。在我的 Java 代码中,我确实有 renderer.setInScroll(true); 用于图表渲染器。这是我的xml的问题吗?
这是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/trendchart"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
</LinearLayout>
</ScrollView>
(目前 ScrollView 中唯一的东西是我计划添加更多元素以使滚动成为必要的图表,我只是希望它首先显示)
此外,我尝试在有和没有环绕线性布局的情况下显示它,结果是相同的。