如何制作循环ListView
,以便在节目结束后成为初始对象。
任何人都可以提供对该决定的引用,或者让它看起来像这个菜单只有pictures只有固定。
答案 0 :(得分:0)
使用ie BaseAdapter
和
public class OwnAdapter extends BaseAdapter{
ArrayList<Object> objects; //init by your own
public int getCount() {
return Integer.MAX_VALUE;
}
public Object getItem(int position) {
return objects.get(position % object.size());
}
// and other abstract methods like getView etc.
}