1

我想在我的应用程序中使用 MPAndroidChartLibrary,但是我遇到了我自己无法解决的问题。我想将图表放入存储在 ListView 中的 CardView 中。CardView 的 xml 如下所示:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
    <android.support.v7.widget.CardView
        xmlns:card_view="http://schemas.android.com/apk/res-auto"
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/card_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        card_view:cardCornerRadius="2dp"
        card_view:contentPadding="16dp"
        card_view:cardUseCompatPadding="true"
        android:layout_marginLeft="8dp"
        android:layout_marginRight="8dp"
        android:layout_marginBottom="8dp">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >
            <TextView
                android:id="@+id/textDateStartTitle"
                android:paddingLeft="5dp"
                android:textSize="26sp"
                android:textColor="@color/accent"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:gravity="left"/>

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

        </LinearLayout>
    </android.support.v7.widget.CardView>
</FrameLayout>

打开包含这些 CardViews 的片段时,出现错误:

java.lang.IllegalArgumentException:在 android.graphics.Bitmap 的 android.graphics.Bitmap.createBitmap(Bitmap.java:787) 的 android.graphics.Bitmap.createBitmap(Bitmap.java:808) 的宽度和高度必须 > 0。 com.github.mikephil.charting.charts.Chart.onSizeChanged(Chart.java:2197) 上的 createBitmap(Bitmap.java:754)

当我在图表内设置android:layout_width并设置android:layout_height为一些固定值(例如 200dp)com.github.mikephil.charting.charts.PieChart时,看起来还可以,并且没有错误。如何在根据父/内容具有宽度和高度的同时消除此错误?

4

2 回答 2

3

现在,您的图表高度不取决于其父级的高度LinearLayout

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

试试这个:

<com.github.mikephil.charting.charts.PieChart
            android:id="@+id/pie_chart"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            />

第二组属性将允许您PieChart填充容器内所有可用的垂直高度LinearLayout(在考虑了TextView上面的高度之后)。

于 2015-01-09T00:26:53.930 回答
0

我发现的唯一方法是在单击按钮时将文件保存附加到图库。之后它可以完美运行。我猜一旦视图被完全绘制,系统就有正确的高度和宽度。

于 2016-05-03T20:32:40.920 回答