Android
Using the Google APIs Client Library for Java on Android
If you are developing for Android and the Google API you want to use is included in the Google Play Services library, use that library for the best performance and experience. If the Google API you want to use with Android is not part of the Google Play Services library, you can use the Google APIs Client Library for Java, which supports Android 1.5 (or higher), and which is described here. Contents: Getting StartedBegin by reading the Android development instructions in the Google HTTP Client Library for Java documentation. AuthenticationAs described in the Android development instructions, the best practice on Android (since the 2.1 SDK) is to use the AccountManager class (@Beta) for centralized identity management and credential token storage. OAuth 2.0 ClientLogin Older Google APIs that support ClientLogin are well supported on Android. To get an auth token, call AccountManager.getAuthToken() with the appropriate authTokenType for the Google API you are using, for example cl for the Google Calendar Data API. Partial Response and UpdateGoogle APIs support a partial-response protocol that allows you to specify which fields are returned to you in the HTTP response. This can significantly reduce the size of the response, thereby reducing network usage, parsing response time, and memory usage. It works with both JSON and XML. The following snippet of code drawn from the Google+ Sample demonstrates how to use the partial-response protocol: Plus.Activities.List listActivities = plus.activities().list("me", "public"); listActivities.setMaxResults(5L); // Pro tip: Use partial responses to improve response time considerably listActivities.setFields("nextPageToken,items(id,URL,object/content)"); ActivityFeed feed = listActivities.execute(); SamplesA good example that uses the generated service-specific library is tasks-android-sample. Another example can be found in calendar-android-sample, which mixes ClientLogin with the service-specific library. Best-Practices Video (2011)In the following hour-long video from Google I/O 2011, Yaniv Inbar describes best practices for accessing Google APIs on Android.
| |