diff options
| author | 2013-01-08 20:21:17 -0800 | |
|---|---|---|
| committer | 2013-01-08 20:21:17 -0800 | |
| commit | b484f8e1a4f07e35a194ee43676da8eb4e9d50ef (patch) | |
| tree | 8780f330cde4182e01a0fb596662f6dfa06b5ab7 | |
| parent | ccb2a74f360bf09ec2c91b28c15e0003a9af440a (diff) | |
| parent | 782b0f7141972e0535f1e905d650073f4e7f55dd (diff) | |
am 782b0f71: am 4459827f: am 25505f95: am cdf5106a: docs: a few doc bugs
* commit '782b0f7141972e0535f1e905d650073f4e7f55dd':
docs: a few doc bugs
| -rw-r--r-- | core/java/android/app/Activity.java | 2 | ||||
| -rw-r--r-- | docs/html/distribute/googleplay/promote/badges.jd | 4 | ||||
| -rw-r--r-- | docs/html/training/sharing/send.jd | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java index 3bdadc3d26e2..d6ddeb655f55 100644 --- a/core/java/android/app/Activity.java +++ b/core/java/android/app/Activity.java @@ -2844,7 +2844,7 @@ public class Activity extends ContextThemeWrapper * item has been selected. * <p> * It is not safe to hold onto the context menu after this method returns. - * {@inheritDoc} + * */ public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) { } diff --git a/docs/html/distribute/googleplay/promote/badges.jd b/docs/html/distribute/googleplay/promote/badges.jd index c084e2c9775b..0027f5906029 100644 --- a/docs/html/distribute/googleplay/promote/badges.jd +++ b/docs/html/distribute/googleplay/promote/badges.jd @@ -61,7 +61,7 @@ var APP_LANGS = ['it','pt-br','pt-pt','nl','ko','ja','fr','es','es-419','en','de // variables for creating 'try it out' demo button var imagePath = "https://developer.android.com/images/brand/" -var linkStart = "<a href=\"http://play.google.com/store/"; +var linkStart = "<a href=\"https://play.google.com/store/"; var imageStart = "\">\n" + " <img alt=\""; // leaves opening for the alt text value @@ -70,7 +70,7 @@ var imageSrc = "\"\n src=\"" + imagePath; var imageEnd = ".png\" />\n</a>"; // variables for creating code snippet -var linkStartCode = "<a href=\"http://play.google.com/store/"; +var linkStartCode = "<a href=\"https://play.google.com/store/"; var imageStartCode = "\">\n" + " <img alt=\""; // leaves opening for the alt text value diff --git a/docs/html/training/sharing/send.jd b/docs/html/training/sharing/send.jd index 15b38e50dc9b..9cb8eac6af10 100644 --- a/docs/html/training/sharing/send.jd +++ b/docs/html/training/sharing/send.jd @@ -95,7 +95,7 @@ Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send."); sendIntent.setType("text/plain"); -startActivity(<strong>Intent.createChooser(sendIntent, getResources().getText(R.string.send_to)</strong>); +startActivity(<strong>Intent.createChooser(sendIntent, getResources().getText(R.string.send_to))</strong>); </pre> <p>The resulting dialog is shown in figure 1.</p> |