MPAndroidChart图表大小

问题描述 投票:0回答:1

我想补充一个饼图上我的Android应用程序,它完美地工作,但是,尽管布局被定义为“match_parent”,它得到了非常小的,我甚至不能读它。

我发现这里StackOverflow上一个答案,说把图表的内容(的setContentView(饼图))和它的工作,但我想添加下面的图表,更多元素,因此它不能被设置为内容。

我该怎么办?

android size mpandroidchart
1个回答
0
投票

下面是我用了一个布局,固定我的问题:

   <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="vertical">

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

        </com.github.mikephil.charting.charts.PieChart>


        ... other things ...


    </LinearLayout>
© www.soinside.com 2019 - 2024. All rights reserved.