在Google NewsStand等应用中,当我们滚动MainUI
时,开发人员使用了ImageView
的按钮。他创建了每个按钮还是有一些捷径?因为创建每个按钮需要花费很多时间。
答案 0 :(得分:0)
您需要使用适配器并覆盖getView方法以将图像加载到列表视图,使用“position”变量加载适当的图像:
public class myAdap extends SimpleCursorAdapter{
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = super.getView(position, convertView, parent);
ImageView img = (ImageView) v.findViewById(R.id.myImg);
//load the content of image base on "position"
return v;
}
}