[android-beginners] Re: onListItemClick on AlertDialog

2008-12-08 Thread Lawrence Samantha
I'm still stuck on this. Anyone can help, pretty please? 2008/12/4 Lawrence Samantha <[EMAIL PROTECTED]> > or is that even possible? > Thanks guys. > > 2008/12/4 Lawrence Samantha <[EMAIL PROTECTED]> > > okay, i solve the parameter passing by using named inner class instead of >> anonymous inner

[android-beginners] Re: onListItemClick on AlertDialog

2008-12-04 Thread Lawrence Samantha
or is that even possible? Thanks guys. 2008/12/4 Lawrence Samantha <[EMAIL PROTECTED]> > okay, i solve the parameter passing by using named inner class instead of > anonymous inner class... > now how about my 1st question? (modifying the parent AlertDialog > message...) > > 2008/12/3 Romain Guy <

[android-beginners] Re: onListItemClick on AlertDialog

2008-12-03 Thread Lawrence Samantha
okay, i solve the parameter passing by using named inner class instead of anonymous inner class... now how about my 1st question? (modifying the parent AlertDialog message...) 2008/12/3 Romain Guy <[EMAIL PROTECTED]> > > Instead of using an anonymous inner class you should use a named inner > cla

[android-beginners] Re: onListItemClick on AlertDialog

2008-12-03 Thread Romain Guy
Instead of using an anonymous inner class you should use a named inner class. Alternatively you can use this method: final int[] currentPosition = new int[] { position }; // ... // in the inner class currentPosition[0] = theNewPosition; On Wed, Dec 3, 2008 at 4:19 PM, Lawrence Samantha <[EMAIL P