2012-01-19 105 views
0

我的目標是要了解下面的示例中的每一個位:谷歌的API:下載並閱讀源

http://code.google.com/p/google-api-java-client/wiki/AndroidAccountManager

我能成功運行的例子,但現在我想明白每一個 線代碼示例。至於標準的Android API,我可以看看 搜索它們的功能,看看developer.android.com,但 對於來自Google API的其他線路,我找不到最新的 1.6源網絡的clsses上,如以下幾點:

import com.google.api.client.extensions.android2.AndroidHttp; 
import com.google.api.client.googleapis.auth.clientlogin.ClientLogin; 
import com.google.api.client.http.HttpResponse; 
import com.google.api.client.http.HttpResponseException; 
import com.google.api.client.http.HttpTransport; 
import com.google.api.client.http.InputStreamContent; 
import com.google.api.client.util.DateTime; 
import com.google.api.services.picasa.PicasaClient; 
import com.google.api.services.picasa.PicasaUrl; 
import com.google.api.services.picasa.model.AlbumEntry; 
import com.google.api.services.picasa.model.UserFeed; 

我看不到日食中的任何JavaDoc的,所以我唯一的選擇,以瞭解這些 是看代碼。我如何使用mercurial註冊Google API的最新副本 ,包括那些可以在android上使用的類?

我想,既然我找不到我想要的東西在網絡上是搶來源 作爲這似乎是學習什麼,我需要的唯一途徑,但我不知道怎麼 使用汞做這個,因爲我不知道如何使用hg,也不知道我可以從哪裏獲得源代碼。

感謝你的幫助,

約翰Goche的

+0

你必須通過測試自己理解或運行它沒有其他替代使用谷歌 – Newts

+0

但我希望能夠檢查出消息來源... – johngoche9999

回答

1

我收到了同樣的問題,通讀以前有關如何爲Android設置構建環境的答案。不幸的是,到目前爲止,構建環境不支持Windows Box。所以一個快速的方法是下載特定android版本的源代碼(例如2.2)並解壓縮到本地目錄。在您的Eclipse項目中,右鍵單擊android.jar打開屬性對話框。點擊Java Source Attachment並輸入源代碼的根目錄。然後刷新你的項目。您已設置爲通過Windows上的源進行調試。