Re: [android-developers] Re: App Design Issue

2012-02-17 Thread TreKing
On Fri, Feb 17, 2012 at 6:11 AM, giles ian wrote: > M1: Loding dialog show on first activity and then moving on to next > activity and then displaying data. > > M2: Moving to next Activity, then showing loding dialog and then > displaying data > M2, as that defers the blocking operation until it

Re: [android-developers] Re: App Design Issue

2012-02-17 Thread giles ian
Hi, basically my question is which of the below methods is better in terms of app design and UI: M1: Loding dialog show on first activity and then moving on to next activity and then displaying data. M2: Moving to next Activity, then showing loding dialog and then displaying data On Fri, Feb

[android-developers] Re: App Design Issue

2012-02-17 Thread moktarul anam
HI Giles if your web service data he heavy then i will suggest you to store in database or local files. otherwise memory will be allocated through out ur application( if u store in static variable/ stack memory). if your web service data is xml file use saxParser. ( android sax parser) Mok