如何将GraphView集成到我的项目中?

时间:2013-03-01 10:23:48

标签: android integration android-graphview

所以我正在为我的应用寻找图表解决方案,我偶然发现GraphView

我正在环顾github和源文件,我似乎无法找到集成指南。也许它就在我面前,但我无法在任何地方看到它。

我以前从未将别人的代码集成到我自己的代码中,所以如果有人能够快速了解​​如何将GraphView与我当前的项目集成,我将非常感激。

4 个答案:

答案 0 :(得分:7)

选项1:

  1. 获取图书馆的jar from here
  2. 将该jar复制到项目中要使用/libs的{​​{1}}文件夹。
  3. 使用它。
  4. 选项2:

    1. 使用GraphView

      github获取项目
      • 使用git bash
      • 移动到您喜欢的目录
      • git git
      • 执行 {li} in git clone git://github.com/jjoe64/GraphView.git graphView Eclipse - > File - > Import... - / Android(使用Existing Android Code Into Project导航到上一步中您最喜欢的文件夹中的Browse文件夹)
      • 右键单击将使用graphView - >的项目GraphView - > Properties - >在底部(Android区域)使用Library选择Add...
      • 使用它

答案 1 :(得分:5)

GraphView已添加到Maven Central,因此Android Studio集成现在变得更加容易。只需将以下内容添加到build.gradle文件中,您就不需要下载.jar。

dependencies {
    'com.jjoe64:graphview:3.1.3'
}

答案 2 :(得分:1)

在Android Studio中,在build.gradle文件中添加以下行:

dependencies {
    compile files('libs/graphview-3.1.jar')
}

不要忘记点击“使用Gradle文件同步项目”。

答案 3 :(得分:1)

使用android studio回答:
- 从from this link

下载.jar

-add jar文件到project-> app-> libs

-open build.gradle和依赖项下写:

dependencies {
compile files('libs/graphview-3.1.jar')
}

在同步项目之后