我正在使用MPAndroidChart库在RecyclerView中绘制半圆形图。 这是我的物品布局:
UITableViewController
结果是饼图绘制得非常小,我无法控制它的大小。
任何想法或示例,我如何拥有固定大小的PieChart?
谢谢。
答案 0 :(得分:0)
relativelayout.setLayoutParams(new ViewGroup.LayoutParams( constant_width, constant_height));
(或)
RelativeLayout布局=新的RelativeLayout(this);
RelativeLayout.LayoutParams layoutParams = RelativeLayout.LayoutParams)layout.getLayoutParams();
layoutParams.height = dpToPx(YOUR_HEIGHT);
layoutParams.width = dpToPx(YOUR_WIDTH);
layout.setLayoutParams(layoutParams);
答案 1 :(得分:0)
<com.github.mikephil.charting.charts.PieChart
android:id="@+id/platforms_chart"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/platforms_title_txt"/>
答案 2 :(得分:0)
发现了问题...
当我尝试将图表向下移动以减少占用的空间时,我给出的值太大。
我仍然必须给它一个固定大小,不能使用match_parent,但我认为我可以忍受...