在一個循環語句中以編程的方式創建了一些imageViews,並分配了id。當在onClick方法中我需要獲得images的id,它只返回最後一幅圖像的id。如何獲取點擊圖像的id?
for (int j = 0; j < 5; j++) {
TableRow tr = new TableRow(this);
imageUrl = "http://ondamove.it/English/images/users/";
imageUrl = imageUrl + listObject.get(j).getImage();
image = new ImageView(this);
image.setPadding(20, 10, 0, 0);
image.setId(j+1);
tr.addView(image);
try {
new DownloadFileAsync(image, new URL(imageUrl))
.execute(imageUrl);
images.add(image);
//images = new ImageView[5];
}
catch (Exception e) {
e.printStackTrace();
}
tr.addView(image);
table.addView(tr, new TableLayout.LayoutParams(
LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT));
image.setOnClickListener(clickImageListener);
下面是 onclicklistener
private OnClickListener clickImageListener = new OnClickListener() {
public void onClick(View v) {
imageId = image.getId();
Intent fullScreenIntent = new Intent(v.getContext(),FullImageActivity.class);
fullScreenIntent.putExtra(ProfilePageNormalUser.class.getName(),imageId);
ProfilePageNormalUser.this.startActivity(fullScreenIntent);
}
};
clickImageListener 的 onClick方法中獲取id應該通過參數v獲取id,上面循環結束後image指向的是最後一個ImageView,獲取的肯定是最後一幅圖像的id。
public void onClick(View v) {
imageId = image.getId();
應該改為:
public void onClick(View v) {
imageId = ((ImageView)v).getId();