imageview がたくさんあります。50 個の ImageViews があるとします。これらは 1 つの画面に表示されます。横スクロールと縦スクロールが利用可能になります。
for(int j = 0; j < numCol; j++)
{
imageView[i*5+j] = new ImageView(this);
imageView[i*5+j].setImageResource(R.drawable.icon);
imageView[i*5+j].setMaxHeight(80);
imageView[i*5+j].setMinimumHeight(80);
imageView[i*5+j].setMaxWidth(90);
imageView[i*5+j].setMinimumWidth(90);
tblRow.addView(imageView[i*5+j],j);
imageView[i*5+j].setOnClickListener(this);
}
ユーザーが imageview[25] をクリックするとします。imageview[25] がクリックされたことをキャッチする直接的な方法はありますか? または、すべての imageview を反復処理する必要があります。