From 28fb09e0b27a97e4664c9a31a3c72a067794b4c6 Mon Sep 17 00:00:00 2001
From: Scott Main See also
+
+
+
@@ -172,7 +180,8 @@ visual elements. This is the standard theme for applications built for Android 3
application will look and feel consistent with the system and other applications when it is
enabled.
Additionally, when an activity uses the holographic theme, the system enables the Action Bar for the activity. The Action Bar +href="{@docRoot}guide/topics/ui/actionbar.html">Action Bar for the activity and removes the +Options Menu button in the system bar. The Action Bar replaces the traditional title bar at the top of the activity window and provides the user access to the activity's Options Menu.
@@ -233,27 +242,26 @@ for Screen Independence. - -It is possible for you to upgrade your application with some new APIs and remain compatible with older versions of Android. Usually, this requires that you use techniques such as reflection to check for the availability of certain APIs at runtime. However, to help you add features from Android 3.0 without requiring you to change your {@code android:minSdkVersion} -or build target, we're providing a static library called the "Android Compatibility package" +or build target, we're providing a static library called the Compatibility Library (downloadable from the AVD and SDK Manager).
This library includes APIs for fragments, loaders, and some updated classes. By simply adding this library to your Android project, you can use these APIs in your application and -remain compatible with Android 1.6. For more information, see the blog post, Fragments for -All.
+remain compatible with Android 1.6. For information about how to get the library and start +using it in your application, see the Compatibility Library document.Many of the new features and APIs that are described above and in the
+ Minimum API level supported: 4 The Compatibility Library is a static library you can add to your Android application in order to
+use APIs not available in older versions of the Android platform. The primary goal of the library is
+to provide APIs introduced in Andriod 3.0 for older versions of Android so that all applications can
+use them. If you're not able to use APIs introduced in Android 3.0 directly, because you want to remain
+backward-compatible, the Compatibility Library provides your application access to self-contained
+versions of some of the latest APIs that you can use with older versions of Android. Most
+importantly, the library provides implementations of the {@link android.app.Fragment} and {@link
+android.content.Loader} APIs, so you can use them in a way that's compatible with devices running
+Android 1.6 (API level 4) and higher. Thus, you can more easily create a single APK that supports a
+majority of devices and provide larger devices (such as tablets) a fully optimized experience by
+using Fragments in your activity
+design. The sections below provide notes about successive releases of
+the Compatibility Library, as denoted by revision number.
+
+ Initial release of the library. The Compatibility Library is provided as a downloadable package from the Android SDK and AVD
+Manager. To install the library: From Eclipse, you can select Window
+> Android SDK and AVD Manager. Or, launch {@code SDK Manager.exe} from
+the {@code <sdk>/} directory (on Windows only) or {@code android} from the {@code
+<sdk>/tools/} directory. When done, all files (including source code, samples, and the {@code .jar} file) are saved
+into the To add the Compatibility Library to your Android project: Your application is now ready to use fragments, loaders and other APIs from the library. All the
+provided APIs are in the {@code android.support.v4} package. Warning: Be certain that you not confuse the standard
+{@code android} packages with those in {@code android.support.v4}. Some code completion tools might
+get this wrong, especially if you're building against recent versions of the platform. To be safe,
+keep your build target set to the same version as you have defined for your {@code android:minSdkVersion}
+and double check the import statements for classes that are duplicated in the Compatibility
+Library, such as {@code SimpleCursorAdapter}. The Compatibility Library provides access to several classes introduced with Android 3.0, plus
+some updated version of existing classes. Some of the most useful and notable classes in the
+library are: For each of the classes above (and others not listed), the APIs work almost exactly the same
+as the counterparts in the latest version of the Android platform. Thus, you can usually refer to
+the latest reference documentation for information about the supported APIs. There are some
+differences, however. Most notably: The Compatibility Library currently does not provide reference documentation for the included
+APIs. To generate your own set, using the {@code javadoc} tool, perform the
+following from a command line: Open the {@code docs/index.html} file to begin browsing the generated documentation. Tip: To enable the Holographic theme on devices
+running Android 3.0 or higher, declare in your manifest file that your application targets
+API level 11. For example: This way, your application automatically receives the Holographic theme and the Action Bar for
+each activity when running on Android 3.0 and higher. For more information about how you can optimize your application for the latest
+Android-powered devices, read Optimizing
+Apps for Android 3.0. If you want to see some sample code that uses the Compatibility Library, take a look at the
+API
+Demos sample code that's included with the Samples package you can download from the AVD and SDK
+Manager. Additionally, the Google I/O App is a complete
+application that uses the library to provide a single APK for both handsets and tablets and also
+demonstrates some of Android's best practices in Android UI design.In this document
+
+
+
+See also
+
+
+Revisions
+
+
+ Compatibility Library, revision 2 (May 2011)
+
+
+
+
+
+ Compatibility Library, revision 1 (March 2011)
+ Installing the Compatibility Library
+
+
+
+
+<sdk>/extras/android/compatibility/ directory. The next directory
+name is {@code v4}, which indicates the lowest compatible version for the library within. That
+is, the code in {@code v4/} supports API level 4 and above. (There may be future libraries that
+have a different minimum version, so they will be saved alongside this one.)Setting Up a Project to Use the Library
+
+
+
+
+Using Some of the Library APIs
+
+
+
+
+
+
+
+
+public boolean onCreateOptionsMenu(Menu menu) {
+ MenuInflater inflater = getMenuInflater();
+ inflater.inflate(R.menu.options, menu);
+ MenuCompat.setShowAsAction(menu.findItem(R.id.action_search), 1);
+ return true;
+}
+
+
+cd <sdk>/extras/android/compatibility/v4/
+mkdir docs
+javadoc -sourcepath src/java/ -subpackages android.support.v4 -d docs
+
+
+<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="11" />
+
+Samples
+
+