Re: [android-developers] Wrapping horizontal list view?

2012-11-26 Thread Gal Ben-Haim
I'm facing the same problem as this old question. I want to create an horizontal wrapping (and vertical scrolling) ListView, for example: 11 222 44 66 7 888 9 where each numbers group is a list item. I found this old answer suggesting using a Gallery widget, but it

Re: [android-developers] Wrapping horizontal list view?

2012-11-26 Thread Gal Ben-Haim
On Monday, November 26, 2012 8:50:56 AM UTC-6, Gal Ben-Haim wrote: I'm facing the same problem as this old question. I want to create an horizontal wrapping (and vertical scrolling) ListView, for example: 11 222 44 66 7 888 9 where each numbers group is a list

[android-developers] how to handle large Parcelable ArrayList in Android ?

2012-10-14 Thread Gal Ben-Haim
I'm developing an Android app that is a client to a JSON webservice API. I have classes of resource objects (some are nested) and I pass results from an IntentService that access the webserive using the Parcelable interface for all the resource classes. the webservice returns arrays or

[android-developers] Re: Proper way to communicate service errors to activity

2012-09-23 Thread Gal Ben-Haim
you can use ResultReceiver, create one in your activity and pass it to the service then send messages from the Service to the Activity with receiver.send() On Friday, September 21, 2012 5:57:35 PM UTC+3, Cool Frood wrote: Hi, I'm trying to implement a service that is started by an activity.