ListView自定义适配器BaseAdaper方法getView(int position, View convertView, ViewGroup parent),第一个参数position为要显示的第几个数据?
举一反三
- 自定义适配器需要实现BaseAdapter类的几个方法?( ) A: getCount() B: getItem(int position) C: getItemId(int position) D: getView(int position, View convertView, ViewGroup parent)
- getView(int position, View convertView, ViewGroup parent)方法中,()参数是当前Item的位置
- 10 自定义实现BaseAdapter必须实现下面那些接口?() A: public int getCount() B: public Object getItem(int position) C: public Object getItem(int position) D: public View getView(int position,View convertView,ViewGroup parent)
- 8 自定义实现BaseAdapter必须实现下面那些接口?() A: public int getCount() B: public Object getItem(int position) C: public Object getItemId(int position) D: public View getView(int position,View convertView,ViewGroup parent)
- 针对ListView的性能优化,主要是在自定义数据适配器中( )方法中进行。 A: getItem() B: getCount() C: getView() D: getItemId()