还有一些其他应用程序这样做,如Twitter,Facebook,甚至本机应用程序,如
Android Market.当您想显示从互联网检索到的项目列表时,这看起来像是显示用户关于正在进行的操作的一些通知的标准方式.这是一个带有动画旋转轮和“Loading …”文本的白色背景屏幕.
有人知道怎么做吗?
我已经能够使用这个代码做类似的事情,但是我也不太喜欢它.仍在工作中:
<ListView android:id="@+id/post_list" android:layout_width="fill_parent" android:layout_height="wrap_content"/> <TextView android:id="@android:id/loading" android:background="@color/white" android:layout_width="fill_parent" android:layout_height="fill_parent" android:gravity="center" android:text="Loading..." />