Android Studio:在 gradle 文件中包含 'com.androidplot:androidplot-core:1.4.0' 时出错
Android Studio: Error on including 'com.androidplot:androidplot-core:1.4.0' in gradle file
我在 gradle 文件编译 'com.androidplot:androidplot-core:1.4.0' 中添加了以下依赖项。然后在进行干净的 gradle 构建后,它在布局中出现以下错误
如何解决这个错误?
androidplot 自定义视图必须不支持布局预览。
如果您想查看其余代码,您可以按说明操作并将涉及的代码括在 View.isInEditMode();
中,例如:
public MyCustomView(Context c) {
if(!View.isInEditMode() {
addView(androidPlotView); // this is the line we are avoiding when using the layout preview
}
}
除了布局预览不起作用,当您 运行 您的应用程序在设备上时它会正常运行 - 这不是您的应用程序中的错误,只是布局预览工具中的错误。
我在 gradle 文件编译 'com.androidplot:androidplot-core:1.4.0' 中添加了以下依赖项。然后在进行干净的 gradle 构建后,它在布局中出现以下错误
如何解决这个错误?
androidplot 自定义视图必须不支持布局预览。
如果您想查看其余代码,您可以按说明操作并将涉及的代码括在 View.isInEditMode();
中,例如:
public MyCustomView(Context c) {
if(!View.isInEditMode() {
addView(androidPlotView); // this is the line we are avoiding when using the layout preview
}
}
除了布局预览不起作用,当您 运行 您的应用程序在设备上时它会正常运行 - 这不是您的应用程序中的错误,只是布局预览工具中的错误。