MarQuel Middleton wrote: > Hey im a new developer ans im having trouble with button functions i > have a menu created but how do i give them functions so when there > pressed they can actually do something?
If you implemented an options menu, override onOptionItemSelected() in your activity. If you implemented a context menu, override onContextItemSelected() in your activity. If you implemented one or more Button widgets, not a menu, call setOnClickListener() on the widget and supply a listener object to be notified when the button is clicked. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Training in Germany, 18-22 January 2010: http://bignerdranch.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

