小编Shr*_*pal的帖子

在ScrollView中使用时不显示MPAndroidChart PieChart

我想PieChart在我的片段中显示一个.以下是我写的xml,

<ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/background">

        <LinearLayout
            android:id="@+id/graphContainer"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <com.github.mikephil.charting.charts.PieChart
                android:id="@+id/piechart"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />

        </LinearLayout>
   </ScrollView>
Run Code Online (Sandbox Code Playgroud)

问题是,PieChart如果我给予match_parent或,是不行的wrap_content.如果我给出固定的高度和宽度它工作正常.此外,如果我删除它ScrollView,它就像一个魅力!那么在什么情况下需要做ScrollView什么?

android android-layout mpandroidchart

8
推荐指数
1
解决办法
1825
查看次数

标签 统计

android ×1

android-layout ×1

mpandroidchart ×1