程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-獲取 imageview 的 id

android-獲取 imageview 的 id

編輯:編程綜合問答
獲取 imageview 的 id

在一個循環語句中以編程的方式創建了一些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();
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved