滚动后的图库位置

发布于 2024-09-17 22:29:37 字数 57 浏览 4 评论 0原文

我有一个包含 7 张图片的画廊。 当Gallery停止滚动时如何获取位置?

I have a gallery with 7 images.
How can I get the position when stop the scrolling of a Gallery?

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

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

发布评论

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

评论(2

锦上情书 2024-09-24 22:29:37

作为参考,您可以处理 Galley 组件的 setOnItemSelectedListener 来执行此操作。

    // Gallery On Item Selected
    mGallery.setOnItemSelectedListener(new OnItemSelectedListener() {

        // On Item Selected
        public void onItemSelected(CustomAdapterView<?> parent, View view,
                int position, long id) {

            // Do some custom action here!

        }
        //>

        // On Nothing Selected
        public void onNothingSelected(CustomAdapterView<?> parent) {
            // TODO Auto-generated method stub

        }
        //>
    });
    //-->

For reference you can handle the setOnItemSelectedListenerof the Galley component to do this.

    // Gallery On Item Selected
    mGallery.setOnItemSelectedListener(new OnItemSelectedListener() {

        // On Item Selected
        public void onItemSelected(CustomAdapterView<?> parent, View view,
                int position, long id) {

            // Do some custom action here!

        }
        //>

        // On Nothing Selected
        public void onNothingSelected(CustomAdapterView<?> parent) {
            // TODO Auto-generated method stub

        }
        //>
    });
    //-->
沙沙粒小 2024-09-24 22:29:37

您是否在 Gallery 中使用适配器?如果是这样,则 AdapterView 有一个返回 int 的 getSelectedItemPosition() 函数。

您可以子类化 ImageAdapter 类并添加一个返回私有 int 的函数,该函数始终更新为最后一个“单击”图像的索引;从而为您提供当前图像的位置。

Are you using an Adapter with the Gallery? If so, then AdapterView has a getSelectedItemPosition() function that returns an int.

You can subclass the ImageAdapter class and add a function that returns a private int which is always updated to the index of the last 'clicked' image; thus giving you the position of the current image.

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