我正在尝试使用MPAndroidChart实现一个简单的饼图,我想要一个最简单的示例,我想将其显示为一个片段,问题是图表没有被重做,但是标签却以奇怪的方式显示在下一个屏幕截图中可以看到:
这是代码:
class StatsFragment : Fragment() {
lateinit var debtsChart : PieChart
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
val v = inflater.inflate(R.layout.fragment_stats, container, false)
debtsChart = v.findViewById(R.id.debtsPieChart)
setupPieChart()
return v;
}
private fun setupPieChart() {
// Populating a list of PieEntries
val rainFall : FloatArray = floatArrayOf(98.5f,128.8f,161.6f)
val monthNames : Array<String> = arrayOf("Jan", "Fab", "Mar")
val pieEntries = ArrayList<PieEntry>()
for(a in 1..2){
pieEntries.add(PieEntry(rainFall[a],monthNames[a]))
}
val dataSet = PieDataSet(pieEntries,"Hello world")
val data = PieData(dataSet)
debtsChart.data = data
debtsChart.invalidate()
}
这是该片段的xml:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorActivityBackground">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="@string/detalles_de_deuda_global"
android:textColor="@android:color/black"
android:textSize="@dimen/title"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<com.github.mikephil.charting.charts.PieChart
android:id="@+id/debtsPieChart"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView2" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
答案 0 :(得分:1)
只需将fillViewPort = "true"
添加到ScrollView中,即可使ConstraintLayout占据屏幕上的所有位置。由于采用这种方式,PieChart取决于ConstraintLayout的大小,反之亦然。为了使一切正常工作,必须为图表指定一定的高度,或者必须让ScrollView占据屏幕上的所有位置。
PS:我不建议您在实际创建布局之前先对其进行分段处理。您可以在调用onViewCreated()
之后执行相同的操作。