在我的安卓应用程序中,我必须创建图表,所以我喜欢使用MPAndroidCharts。我在上面看到的最新版本是v3.0.1,但我可以在gradle上正确地配置它。当我使用它的gradle配置时,我得到了下面的错误。
Error:Gradle: A problem occurred configuring project ':app'.
> Could not resolve all dependencies for configuration ':app:_debugCompile'.
> Could not find
我正在用MPAndroidChart绘制一些安卓的图表。我面临的问题是,下面的代码是以异步方式执行的。例如:
Log.d("Starting data load","Starting data load");
x1.setValueFormatter(new GraphXAxisValueFormatter(xLabels_nl,chart));
chart.setData(data);
chart.fitScreen();
Log.d("Finished data load","Finished data load");
“
我想在我的项目中使用MPAndroidChart。
我将这个库添加到我的gradle中,但是在我的xml布局文件中,我找不到图表。
我的build.gradle(模块)是:
dependencies {
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
}
Build.gradle(项目)是:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscri