为了账号安全,请及时绑定邮箱和手机立即绑定

比文艺式更好的方式?

关于BaseAdapter的文艺模式,直接修改为下面的方式,可以吗?

@Override
public View getView(int i, View view, ViewGroup viewGroup) {    

    if (view == null) {
        view = inflater.inflate(R.layout.news_item, null);

        NewsBean bean = list.get(i);
        
        ImageView imageView = (ImageView) view.findViewById(R.id.iv_news);
        ImageLoader imageLoader = new ImageLoader(imageView, bean.IconUrl);
        imageLoader.showImageByThread();//异步加载图片

        TextView txtTitle = (TextView) view.findViewById(R.id.tv_news_title);
        txtTitle.setText(bean.Title);

        TextView txtContent = (TextView) view.findViewById(R.id.tv_news_content);
        txtContent.setText(bean.Content);
    }
    return view;
}

这样也不会出现错乱,也不会重复的设置图片和文本。

请教下老师,这样会有什么问题吗?

正在回答

0 回答

举报

0/150
提交
取消
Android必学-异步加载
  • 参与学习       50627    人
  • 解答问题       311    个

了解Android中的异步加载处理方法,这是面试问的最多的知识点

进入课程

比文艺式更好的方式?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信