我有一个网格视图适配器,其中所有内容都在此代码中:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
View v = convertView;
CheckBox check = null;
ImageView pic = null;
if (convertView == null) { // if it's not recycled, initialize some
// attributes
LayoutInflater vi = (LayoutInflater)mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.check_box_and_imageview, null);
}
pic = (ImageView)v.findViewById(R.id.imageView);
check = (CheckBox) v.findViewById(R.id.checkBox);
check.setTag(position);
ImageLoader loader = new ImageLoader(mContext);
//this loads image from given url
loader.DisplayImage(url[position], pic);
return v;
}
在这里,我使用复选框和图像视图创建视图。存在问题,因为图像视图的大小不同,gridview通过大小复选框和图像视图进行对齐。但我想通过复选框订购元素。
为了更好地解释我想要做什么将显示这张照片:
这是我想做的。我的图像视图的大小不一样。现在我将说明它的外观:
所以这不适合我。我想要对齐而不是所有复选框和imageview。但只是复选框将在复选框下。
那么这可能与gird视图有关吗?
答案 0 :(得分:0)