我是为Android编写应用程序的初学者。
我需要一个“ImageSwitcher”并用服务器队列中的图像填充它。在来询问之前,我已经在互联网上进行了很多研究。有人会发布一些代码示例或提供一些关于搜索内容的提示吗?
答案 0 :(得分:0)
你想要做什么创建一个像这样的视图
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Gallery
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<ImageSwitcher
android:id="@+id/image_switcher"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
然后,在某种AsyncTask的幕后,下载图像,然后显示它们。那段代码并不太难。
github上的这个project也可能有用。在listview中延迟加载图像似乎很好,但我敢打赌它可以轻松修改以加载图库。