从github导入项目

时间:2016-09-01 12:44:48

标签: android eclipse github

我找到了这个动画圆圈栏,我想将它添加到我的项目中。

  

https://github.com/jlmd/AnimatedCircleLoadingView

问题是,我不知道在哪里添加它以及如何在我的项目中获取它。

我尝试添加

<com.github.jlmd.animatedcircleloadingview.AnimatedCircleLoadingView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/circle_loading_view"
android:layout_width="250dp"
android:layout_height="250dp"
android:background="@colors/orange"
android:layout_centerInParent="true"
app:mainColor="@colors/orange"
app:secondaryColor="@colors/blue"
/>

在我的activity_main.xml上  但我想这不是我唯一要做的事情。

有关如何在我的项目中使用此代码的任何信息将不胜感激。

如果我将它导入Eclipse,我会收到这个

检索项目的父项时出错:找不到与给定名称匹配的资源&#39; Theme.AppCompat.Light&#39;。 styles.xml / MainActivity / res / values line 4 Android AAPT问题

2 个答案:

答案 0 :(得分:3)

将存储库添加到build.gradle

Administrator

为build.gradle添加依赖关系

repositories {
    maven {
        url "http://dl.bintray.com/jlmd/maven"
    }
}

参考AnimatedCircleLoadingView

答案 1 :(得分:1)

我认为您尚未添加库的依赖项。 为此,您可以参考this article.

您需要添加的依赖项在库的文档中提供(但它适用于Android Studio,因此您可以使用上面的链接将其添加到Eclipse中):

  

为build.gradle添加依赖关系

     

compile'c​​om.github.jlmd:AnimatedCircleLoadingView:1.1.5@aar'