该问题与我在Carousel with thumbnail images at the bottom遇到的其他问题有关 我正在尝试使用ImageViewer和DefaultListModel实现类似的轮播,但仅实现Image。当我从底部轮播中选择缩略图时,我在ImageViewer中显示相应的图像。但是我注意到的是; ImageViewer中的列表不会滚动到所选图像,但是当前显示的图像会替换为所选图像。因此,当我向左或向右滑动时;图像与原始序列不同。以下是我的代码,用于在Imageviewer中显示选定的图像
imageviewer.setImage(imageviewer.getImageList()。getItemAt(selectedImgIndx));
有什么办法使其表现得像Tab.setSelectedIndex吗?
答案 0 :(得分:1)
确定,使用:
imageviewer.getImageList().setSelectedIndex(idx);