I am having some difficulty in getting my implementation of a BaseAdapter working to populate a GridView. I ve a few questions around the workings of the BaseAdapter, based on the example here: http://developer.android.com/resources/tutorials/views/hello-gridview.html
在我的实现中,我的BaseAdapter.getCount()方法返回130。因此,我希望getView()方法在每个计数中被调用一次。然而,据我所知,getView()只被调用了大约70次。。。。为什么会这样?
如果getView()用于在网格中的每个位置构造View对象,那么返回object的getItem()的目的是什么?
最后,我希望我的网格宽10列,高13行。为了实现这一点,我是否只将android:numColumns属性设置为10?
感谢您在理解这一点时提供的任何帮助。
谢谢