我使用自定义适配器创建了一个GridView图像。它工作正常,但现在我想在运行时获取这些图像的ID以对齐它们下面的气泡。我可以获取行ID,但不能获取图像的ID。请帮忙。
public class GridAdapter extends BaseAdapter {
private Context mContext;
private GridItem[] items;
public GridAdapter(Context c) {
mContext = c;
items = GridItem.values();
//inflater = (LayoutInflater) activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
}
public int getCount() {
return items.length;
}
public GridItem getItem(int position) {
return items[position];
}
public long getItemId(int position) {
return position;
}
public static class ViewHolder {
public ImageView image;
}
public View getView(int position, View convertView, ViewGroup parent) {
ImageView imageView;
if (convertView == null) {
imageView = new ImageView(mContext);
imageView.setLayoutParams(new GridView.LayoutParams(GridView.LayoutParams.WRAP_CONTENT, GridView.LayoutParams.WRAP_CONTENT));
//imageView.setPadding(10, 10, 10, 10);
} else {
imageView = (ImageView) convertView;
}
imageView.setBackgroundResource(items[position].getResourceId());
if(position == 3) {
ImageView helpBubble = new ImageView(mContext);
}
//imageView.setTag(items[position]);
return imageView;
}
}
更新
有效!我获得了资源ID,但现在我无法在单击的网格项下添加新视图。每次出现在顶部
LayoutInflater inflate = (LayoutInflater) mContext
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
RelativeLayout helpBubble = (RelativeLayout) inflate.inflate(R.layout.bubble, null);
TextView helpText = (TextView) helpBubble.findViewById(R.id.bubble_text);
helpText
.setText("Lorem Epsum Dolor Emit ab asdfj asdflqwe fsadf wqrwqer asdfasdf wfsad asdfasdf rqwerqwrw");
Button moreButton = (Button) helpBubble.findViewById(R.id.bubble_button);
moreButton.setText("More Info");
RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
lp.addRule(RelativeLayout.BELOW, item.getResourceId());
gridRL.addView(helpBubble, lp);
答案 0 :(得分:0)
你的getItemId(int position)-method返回你传递给方法的值。
你应该返回类似[item] .getResourceId()
之类的东西