Android:当用户在滚动视图中滚动时,Lazy-Load xml内容

时间:2012-02-08 21:09:01

标签: android xml lazy-loading scrollview

有没有办法在Android中延迟加载xml滚动视图? 当用户向下滚动页面时,我需要在TabHost中延迟加载超过110个图像和110个文本视图,这可能吗?

- 额外信息 -

<TableRow android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/TableRow02">
  <TextView android:id="@+id/TextView02" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="Bicycle Crunches"></TextView>
  <ImageView android:src="@drawable/bicyclecrunches" android:layout_height="100dp" android:layout_width="100dp" android:id="@+id/imageView2"></ImageView>
</TableRow>

我在滚动视图中有大约110个这些xml片段,我需要延迟加载,否则应用程序将无法加载。

0 个答案:

没有答案