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.createBitmap(Bitmap.java:808) で android.graphics.Bitmap.createBitmap(Bitmap.java:787) で android.graphics.Bitmap で > 0 でなければなりません。 createBitmap(Bitmap.java:754) at com.github.mikephil.charting.charts.Chart.onSizeChanged(Chart.java:2197)

android:layout_widthandroid: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"
            />

2 番目の属性セットを使用するPieChartと、コンテナー内で使用可能なすべての垂直高さを埋めることができますLinearLayout(その上の高さを考慮した後TextView)。

于 2015-01-09T00:26:53.930 に答える
0

私が見つけた唯一の方法は、ボタンのクリックでファイルの保存をギャラリーに添付することでした。その後は完璧に機能します。ビューが完全に描画されると、システムの高さと幅が正しくなると思います。

于 2016-05-03T20:32:40.920 に答える