覆盖 OnFling 尚未显示的视图

发布于 2024-10-13 19:25:52 字数 141 浏览 4 评论 0原文

有没有办法可以获取 onFling 尚未显示的视图的引用?我正在扩展 Gallery,并且在我的 onFling 方法中,我当然可以获得当前视图(已经显示的视图)。但我还没有找到一种方法来获取即将被抛弃的视图。我需要更改背景颜色等属性(它是 TextViews 库)。

Is there a way I can get a reference to the Views that onFling has not yet revealed? I'm extending Gallery, and in my onFling method, of course I can get the current View (the one that is showing already). But I haven't found a way to get the views that are about to be flung by. I need to change properties like backgroundColor (it's a Gallery of TextViews).

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

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

发布评论

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

评论(1

空心↖ 2024-10-20 19:25:52

有一种巧妙的方法可以处理图库中的每个 onFocus 事件。当每个项目成为焦点时,它将被解雇。

thisGallery.setOnItemSelectedListener(new OnItemSelectedListener() {
   @Override
   public void onItemSelected(AdapterView<?> parentView,
                              View selectedItemView,
                              int position,
                              long id) { }

There's a nifty method for handling each onFocus event in a gallery fling. As each item comes into focus, this will get fired.

thisGallery.setOnItemSelectedListener(new OnItemSelectedListener() {
   @Override
   public void onItemSelected(AdapterView<?> parentView,
                              View selectedItemView,
                              int position,
                              long id) { }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文