diff options
| author | 2011-06-27 04:33:59 -0700 | |
|---|---|---|
| committer | 2011-06-27 04:33:59 -0700 | |
| commit | cf33a02bef19e1d0f11d119194c4f8439a06f1e2 (patch) | |
| tree | a90f0000305db0ae97ea0f69dad606f4fef5f8fc | |
| parent | 06ca9b90e664235d79304a4611529c09256d060e (diff) | |
| parent | 3ba39ef20fdbe4512d3c3ad6ad7c833b14318391 (diff) | |
am 3ba39ef2: am 1f82dc08: Merge "Typo in spinner tutorial." into honeycomb-mr2
* commit '3ba39ef20fdbe4512d3c3ad6ad7c833b14318391':
Typo in spinner tutorial.
| -rw-r--r-- | docs/html/resources/tutorials/views/hello-spinner.jd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/resources/tutorials/views/hello-spinner.jd b/docs/html/resources/tutorials/views/hello-spinner.jd index 7a3a9c3c1e82..e9dc20fb7ba8 100644 --- a/docs/html/resources/tutorials/views/hello-spinner.jd +++ b/docs/html/resources/tutorials/views/hello-spinner.jd @@ -105,7 +105,7 @@ public class MyOnItemSelectedListener implements OnItemSelectedListener { public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) { - Toast.makeText(parent.getContext()), "The planet is " + + Toast.makeText(parent.getContext(), "The planet is " + parent.getItemAtPosition(pos).toString(), Toast.LENGTH_LONG).show(); } |