IllegalArgumentException: radius must be > 0

前端 未结 3 1550
既然无缘
既然无缘 2021-02-19 04:12

I\'m designing a bar graph and a pie chart in a view pager using AChartEngine library. When I scroll from bar graph to pie chart, application crashes. The crash report is as fol

3条回答
  •  青春惊慌失措
    2021-02-19 04:41

    For me problem was in cardview's app:cardCornerRadius="0dp"

    I changed it to :

    app:cardCornerRadius="1dp"
    

    https://stackoverflow.com/a/43864791/6055194

提交回复
热议问题