【在Android中使用getView和convertView】逆水行舟用力撑,一篙松劲退千寻。这篇文章主要讲述在Android中使用getView和convertView相关的知识,希望能为你提供帮助。
The right way (According to Google I/O-10) to use getView with the convertView-param within a custom adapter class.
- public View getView( int position, View convertView, ViewGroup parent) {
- if ( convertView == null) {
- convertView = mInflater.inflate( R.layout.item, parent, false) ;
- }
- ( ( TextView) convertView.findViewById( R.id.text) ) .setText( DATA[ position] ) ;
- ( ( ImageView) convertView.findViewById( R.id.icon) ) .setImageBitmap(
- ( position & 1) == 1 ? mIcon1 : mIcon2) ;
- return convertView;
- }
推荐阅读
- Android-底部有标签
- [android]全屏
- [android]加载新视图
- [android]无边框Tabbar底部
- [android]设置超时
- Swift中面向协议编程的简介
- Realm是最好的Android数据库解决方案
- Swift教程(MVVM设计模式简介)
- Ionic 2 vs. Ionic 1(性能提升,新工具和向前迈出的一大步)