尝试使用库时,渲染不起作用

时间:2016-05-24 06:03:05

标签: android

我正在尝试使用名为HolographLibrary的库。 我将jar文件放在lib下,然后我写了这样的依赖项。

dependencies{
compile files('libs/HoloGraphLibrary-master.jar')

但是当我尝试在xml文件中使用该库时,它说 找不到以下课程, -com.echo.holographlibray.LineGraph(修复构建路径,编辑xml文件,创建类)。

这是我的xml文件,

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<com.echo.holographlibrary.LineGraph
android:id="@+id/holo_graph_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</FrameLayout>

我该如何解决?

0 个答案:

没有答案