2013-07-26 105 views
1

我使用'android studio',我很初學。 但我不能也不知道如何使用它。如何在android-studio中導入庫?

啊,我正在使用窗口8 64位,現在我想用「https://github.com/square/android-times-square」。

直到現在我用'項目結構 - >模塊 - > + - >導入模塊 - > android-time-square-master(unpacked)\ library(取消標記測試並選擇3) - >轉到'也許我的項目名稱,但也存在MaybeProject) - >去依賴 - > + - >庫 - > Java - > android-time-square-master.zip(取消標記測試),然後應用,確定'

然後去我的layout.xml填寫代碼,填寫他們對我說的Activity,但它不起作用。

真的很抱歉,您能一步一步告訴我嗎? T.T

我希望做出顯示日曆的活動。幫我。謝謝,真的非常感謝提前。

回答

0

Android Studio使用Gradle進行構建。版本2.2應該選擇build.gradle文件中指定的所有庫。但是,如果更改了「項目結構」對話框中的任何內容,它將不會更新build.gradle文件。

打開

-project_root 
    -module_root 
     build.gradle 

此文件不應該是空的。 project_root文件夾中還有一個空的build.gradle,所以不要混淆它們。在依賴項閉包中添加所需的所有庫。不要混淆依賴關係和buildscript.dependencies。

apply plugin: 'android' 

repositories { 
    mavenCentral() 
} 

dependencies { 
    compile files('libs/android-support-v4.jar') 
    //here is depenency from Maven Central Repository 
    compile 'org.roboguice:roboguice:2.0' 
    //here is dependency from your local libs folder 
    compile files('libs/mylib.jar') 
} 
+0

非常感謝。我應該考慮一下。謝謝! – JungHoon