diff options
Diffstat (limited to 'docs/html/guide/practices')
-rw-r--r-- | docs/html/guide/practices/optimizing-for-3.0.jd | 6 | ||||
-rw-r--r-- | docs/html/guide/practices/tablets-and-handsets.jd | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/html/guide/practices/optimizing-for-3.0.jd b/docs/html/guide/practices/optimizing-for-3.0.jd index 465a847..fea54af 100644 --- a/docs/html/guide/practices/optimizing-for-3.0.jd +++ b/docs/html/guide/practices/optimizing-for-3.0.jd @@ -54,7 +54,7 @@ onclick="$('#naMessage').hide();$('#deprecatedSticker').show()" /> <li><a href="tablets-and-handsets.html">Supporting Tablets and Handsets</a></li> <li><a -href="{@docRoot}tools/extras/support-library.html">Compatibility Library</a></li> +href="{@docRoot}tools/support-library/index.html">Compatibility Library</a></li> <li><a href="http://code.google.com/p/iosched/">Google I/O App source code</a></li> </ol> @@ -281,7 +281,7 @@ use techniques such as reflection to check for the availability of certain APIs to help you add features from Android 3.0 without requiring you to change your <a href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code android:minSdkVersion}</a> or build target, we're providing a static library called the <a -href="{@docRoot}tools/extras/support-library.html">Compatibility Library</a> +href="{@docRoot}tools/support-library/index.html">Compatibility Library</a> (downloadable from the Android SDK Manager).</p> <p>This library includes APIs for <a href="{@docRoot}guide/components/fragments.html">fragments</a>, <a @@ -289,7 +289,7 @@ href="{@docRoot}guide/components/loaders.html">loaders</a>, and some updated cla simply adding this library to your Android project, you can use these APIs in your application and remain compatible with Android 1.6. For information about how to get the library and start using it in your application, see the <a -href="{@docRoot}tools/extras/support-library.html">Compatibility Library</a> document.</p> +href="{@docRoot}tools/support-library/index.html">Compatibility Library</a> document.</p> </div> </div> diff --git a/docs/html/guide/practices/tablets-and-handsets.jd b/docs/html/guide/practices/tablets-and-handsets.jd index 8d6d3dd..a63a368 100644 --- a/docs/html/guide/practices/tablets-and-handsets.jd +++ b/docs/html/guide/practices/tablets-and-handsets.jd @@ -141,7 +141,7 @@ bar below.</p> <h3>Remaining backward-compatible</h3> <p>If you want to use fragments in your application <em>and</em> remain compatible with versions of Android older than 3.0, you can do so by using the Android <a -href="{@docRoot}tools/extras/support-library.html">Support Library</a> (downloadable from the +href="{@docRoot}tools/support-library/index.html">Support Library</a> (downloadable from the SDK Manager).</p> <p>The support library includes APIs for <a href="{@docRoot}guide/components/fragments.html">fragments</a>, <a @@ -150,7 +150,7 @@ versions of Android. By simply adding this library to your Android project, you backward-compatible versions of these APIs in your application and remain compatible with Android 1.6 (your <a href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code android:minSdkVersion}</a> value can be as low as {@code "4"}). For information about how to get the -library and start using it, see the <a href="{@docRoot}tools/extras/support-library.html">Support +library and start using it, see the <a href="{@docRoot}tools/support-library/index.html">Support Library</a> document.</p> <p>The support library <em>does not</em> provide APIs for the action bar, but you can use |