我有这个简单的ArrayList
Image img = new Image("/Mobile 005.JPG");
Image img1 = new Image("/Mobile 006.JPG");
Image img2 = new Image("/Mobile 007.JPG");
Image img3 = new Image("/Mobile 008.JPG");
imgList.add(img);
imgList.add(img1);
imgList.add(img2);
imgList.add(img3);
HorizontPanel hpnl = new HorizontalPanel();
hpnl.add(imgList);
此图像列表将来自 db,并且可以是任意数量。
此时这HorizontalPanel
包含 4 张图片(将来可能包含 400 张图片),现在如果用户来点击第二张图片,假设我们如何知道用户点击了哪张图片?
我将在哪里以及如何放置我的clickHandler
?