当用户滚动图库时如何获取元素在图库中的位置?

发布于 2024-09-15 14:14:39 字数 154 浏览 3 评论 0原文

大家好, 我有一个包含文本值的图库,例如电影、音乐、游戏、杂志等,我的问题是,每当用户滚动图库时,我想获取元素的位置。

例如, 用户将图库从电影滚动到游戏意味着我必须获取当前所选元素的位置,即游戏的位置。

提前致谢,

Hai All,
I have a Gallery which Contains text Value such as Movie, Music, Games, Magzine etc., My Problem is, Whenever the User Scrolls the Gallery, I want to get the Postion of the Element.

For Instance,
User Scrolls the Gallery from Movie to Games means then i have to get the Position of Currently Selected Element ie postion of Games.

Thanks In Advance,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画离情绘悲伤 2024-09-22 14:14:39

在你的 Oncreate 中做这样的事情......

{
 gallery.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

            public void onItemSelected(AdapterView<?> arg0, View arg1, int pos ,long arg3) {

               //you will have the selected position in variable pos   
                }

}

希望它能起作用

in your Oncreate do somthing like this.....

{
 gallery.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

            public void onItemSelected(AdapterView<?> arg0, View arg1, int pos ,long arg3) {

               //you will have the selected position in variable pos   
                }

}

hope it will work

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文