From f05e34a10ca262cf1f73a6347b6e5be26718e686 Mon Sep 17 00:00:00 2001
From: Scott Main Related samples
-
-
See also
@@ -834,7 +827,7 @@ then rotates to landscape (which restarts the current activity).
For more samples using fragments (and complete source files for this example), -see the sample code available in ApiDemos (available for download from the Samples SDK component).
diff --git a/docs/html/guide/google/play/expansion-files.jd b/docs/html/guide/google/play/expansion-files.jd index 62ca1e2..750e958 100644 --- a/docs/html/guide/google/play/expansion-files.jd +++ b/docs/html/guide/google/play/expansion-files.jd @@ -262,7 +262,7 @@ are on the device upon start-up. If the files are not on the device, use Google href="{@docRoot}guide/google/play/licensing/index.html">Application Licensing service to request URLs for the expansion files, then download and save them.To greatly reduce the amount of code you must write and ensure a good user experience -during the download, we recommend you use the Downloader +during the download, we recommend you use the Downloader Library to implement your download behavior.
If you build your own download service instead of using the library, be aware that you must not change the name of the expansion files and must save them to the proper diff --git a/docs/html/guide/practices/optimizing-for-3.0.jd b/docs/html/guide/practices/optimizing-for-3.0.jd index 65c5674..0dd92d9 100644 --- a/docs/html/guide/practices/optimizing-for-3.0.jd +++ b/docs/html/guide/practices/optimizing-for-3.0.jd @@ -118,7 +118,7 @@ Manager and install the following:
Set the target to "Android 3.0" and the skin to "WXGA" (the default skin).
If you'd like to start building an app with OpenGL right away, have a look at the tutorials for -OpenGL ES 1.0 or -OpenGL ES 2.0! +
If you'd like to start building an app with OpenGL right away, follow the +Displaying Graphics with OpenGL ES class.
For a complete example of how to apply projection and camera views with OpenGL ES 1.0, see the OpenGL ES 1.0 -tutorial.
-In the ES 2.0 API, you apply projection and camera view by first adding a matrix member to @@ -382,8 +374,7 @@ objects to be rendered by OpenGL.
For a complete example of how to apply projection and camera view with OpenGL ES 2.0, see the OpenGL ES 2.0 -tutorial.
+href="{@docRoot}training/graphics/opengl/index.html">Displaying Graphics with OpenGL ES class.Read App Install Location for +
Read App Install Location for more information about using this attribute (including how to maintain backward compatibility).
Introduced in: API Level 8.
diff --git a/docs/html/guide/topics/resources/accessing-resources.jd b/docs/html/guide/topics/resources/accessing-resources.jd index 03bb939..0673b6f 100644 --- a/docs/html/guide/topics/resources/accessing-resources.jd +++ b/docs/html/guide/topics/resources/accessing-resources.jd @@ -336,6 +336,6 @@ android.widget.ArrayAdapter}<String>(this, android.R.layout.simpleIn this example, {@link android.R.layout#simple_list_item_1} is a layout resource defined by the platform for items in a {@link android.widget.ListView}. You can use this instead of creating -your own layout for list items. (For more about using {@link android.widget.ListView}, see the -List View Tutorial.)
+your own layout for list items. For more information, see the +List View developer guide. diff --git a/docs/html/guide/topics/security/security.jd b/docs/html/guide/topics/security/security.jd index eeaac44..9cdccae 100644 --- a/docs/html/guide/topics/security/security.jd +++ b/docs/html/guide/topics/security/security.jd @@ -135,8 +135,7 @@ dynamic permission grants on a case-by-case basis.To provide additional protection for sensitive data, some applications
choose to encrypt local files using a key that is not accessible to the
-application. (For example, a key can be placed in a KeyStore and
+application. (For example, a key can be placed in a {@link java.security.KeyStore} and
protected with a user password that is not stored on the device). While this
does not protect data from a root compromise that can monitor the user
inputting the password, it can provide protection for a lost device without
AccountManager using checkSignature().
Alternatively, if only one application will use the credential, you might use a
-KeyStore for
+{@link java.security.KeyStore} for
storage.
If you need to store a key for repeated use, use a mechanism like KeyStore that
+
If you need to store a key for repeated use, use a mechanism like {@link java.security.KeyStore} that provides a mechanism for long term storage and retrieval of cryptographic keys.
-- cgit v1.1