[android-developers] Re: using custom data in message handler

2009-04-19 Thread DevilMayCry
Thats a good work around thanks :) On Apr 20, 9:43 am, Greg Krimer wrote: > The Message object contains two int fields arg1 and arg2 in addition > to the what field to store extra data. To pass a boolean value within > the message I would make use of of arg1 by mapping true to one and > false to

[android-developers] Re: using custom data in message handler

2009-04-19 Thread Greg Krimer
The Message object contains two int fields arg1 and arg2 in addition to the what field to store extra data. To pass a boolean value within the message I would make use of of arg1 by mapping true to one and false to zero. On Apr 18, 9:40 am, DevilMayCry wrote: > Hi All , > I am calling a remote s