[android-beginners] New Posting on funfashion4u (on 10 Apr 09)

2009-04-10 Thread tariq hassan
- Both Good Times - Burned Out - A Vampires - Zombies

[android-beginners] Re: Multicast problem

2009-04-10 Thread David Turner
Sorry, but the emulator currently doesn't support multicast :-( On Wed, Apr 8, 2009 at 1:57 AM, Thiago B. wrote: > > Hi, I'm trying to develop an application that need to send UDP > Multicast packets to the local network. > There is a few equipments that respond to this packets and send back > s

[android-beginners] Calling web services in android

2009-04-10 Thread kavitha
Hi All, I am doing game project where in i need to call PHP web service and display scores in score board. I am new to android,Can somebody please help on how to call web services in android. I searched for so many examples,but no example looked to be working. It is urgent,Please help. Thanks

[android-beginners] Re: How to: (new) HTTP API

2009-04-10 Thread yves
Thank you On Apr 10, 12:09 am, Mark Murphy wrote: > yves wrote: > > I've read a lot of tutorials explaining how to use the HTTP Client > > from the previous Android SDK. > > With SDK 1.1 r1 this API has totally changed. > > > Is there any tutorial for this new API? > > HttpClient is a product of

[android-beginners] Re: Scrolling TextView without the dimming effect?

2009-04-10 Thread sh...@kfold.org
Answer for posterity: Need to setClickable and setLongClickable to false (must be both, setting one or the other still causes dimming). Need to set above _after_ calling setMovementMethod (ScrollingMovementMethod.getInstance()). Setting XML properties doesn't work since they seem to be overridde