开发者

Android: Which is a better design choice? Lazy Loading or Initial Waiting Time?

I have been an avid fan of lazy loading but yesterday I was talking with a fellow programmer who showed me another application and expressed how happy he was about the initial waiting time that the application takes (Android Marketplace to be precise) to load up the list and allow him to scroll smoothly than implement lazy loading and make his life miserable...

Though I can get lazy loading to work using background downloading of images to make the whole feel uninterrupted, I still am not sure which is the preferred design methodology.开发者_JS百科.. Any suggestions?


A major component of UI design is to make the UI feel response. Now, realistically, there is always going to be waiting time - applications have to load, data needs to be populated, etc. The trick here is to always give the user feedback that something is being accomplished and, of course, to not spend too much time at loading screens (I'm looking at you PS1!).

In the case of your application, I would concur with your friend that lazy loading can be somewhat annoying. Nobody wants the screen to stutter/pause as they scroll (as an example). In addition to this, people have become accustomed to some waiting time for applications to load a computer. But, there is a fine line between "I'm willing to wait" and "screw this, I'm not using this app."

Of course, at some point, it does become personal preference of the way of doing this. This is where receiving feedback from your users is a necessity (it's not called user interface design for nothing).


I am in favor of a hybrid. The information needed for a user interface can often be separated in two:

  • Textual information.
  • Visual information.

I always try to preload the textual information, so that I get a user interface that the user can begin interacting with. And then I begin lazily loading visual information on background threads.

If the user interface needs to be stalled, always show a progress indicator, even if it is an determined indicator. The placebo effect of a user interface that is at least moving can not be underestimated. Perceived responsiveness can even be better than actual responsiveness.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜