Android Gallery的起始位置

时间:2013-11-06 15:46:29

标签: android indexing gallery

我有一个 pictureGallery =(图库)findViewById(R.id.imageGallery);

如何将图片10的索引设置为样本,并模拟对img 10的点击?

THX

1 个答案:

答案 0 :(得分:1)

为了选择图片10,只需要:

pictureGallery.setSelection(10);

要模拟img 10上的点击,您只需为位置10运行相应的OnItemClicked代码。