am 1f82dc08: Merge "Typo in spinner tutorial." into honeycomb-mr2

* commit '1f82dc08f1616a83d8d1c43fa9ac16d0d60dd537':
  Typo in spinner tutorial.
This commit is contained in:
Anirudh Dewani
2011-06-26 23:06:04 -07:00
committed by Android Git Automerger

View File

@@ -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();
}