问题标签 [fastscroll]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
android - 如何实现Android的联系人列表滚动索引效果?
我想实现Android联系人的列表滚动效果。
我发现了一些类似的自定义实现,但不一样。
与往常一样,谷歌在其默认应用程序上创造了很棒的体验,但没有将其添加到本机框架库中。
自 KitKat =/ 起,此滚动条在联系人列表中可用
更新
我在 Android 开发者页面中找到了这个联系人列表示例,他们正在实现这个确切的效果。
android - 在启用了 fastscrollbar 的列表视图上关注问题
我遇到了列表视图的问题。它在右侧显示带有复选框的项目。当我启用快速滚动时,每次按下复选框时,都会出现快速滚动条并滚动到我按下的位置,而不仅仅是选中复选框......
如果重要的话,我会根据列表中的项目数动态启用快速滚动条。我该如何解决这个焦点问题?
编辑:事实上我也有同样的问题没有复选框。当我按下列表视图项目的右侧时,它不会像应有的那样打开项目,但它会滚动到我按下的位置。GridView 中的相同行为...
android - FastScrollBar 的 ThumbDrawable 没有改变。
已编辑
我ListView
的是:
然后,在Values
我的风格中fastscrollbar
是:
而且,然后我fastscroll_thumb.xml
的是:
在哪里,fast_track_drawable
和fast_drawable
是两个图像。
但是,我fastscrollbar
的仍然没有被定制。任何人都可以指出,我错了。我看过一些教程,比如android listview 快速滚动自定义问题,以及如何在使用 fastScrollEnabled 时显示自定义拇指
android - 在android中快速滚动时避免SwipeRefresh
我有一个始终启用和ListView
实施。当我向下滑动列表时,它会刷新列表。我的问题是。如果列表的第一个项目可见或在其初始顶部显示,则如果向下滚动,则不会产生向下滚动的效果。无论如何/解决方案,如果我按下,那么它不应该做刷新效果,而是应该向下滚动,因为它是自然行为。fastScroll
SwipeRefresh
fastScroll
fastScrollThumb
Swipe
fastScrollThumb
Swipe
编辑
我XML Layout
的如下:
我Logic for onScroll
的启用/禁用SwipeRefresh
是:
gridview - 如何更改 Gridview 快速滚动条样式?
如何在 android.gridview 中更改快速滚动条样式。当我滚动 gridview 图像时,会显示快速滚动,但 textview 会显示非常大的尺寸。所以我想设置自定义样式代替默认样式。
android - ClassCastException:XAdapter 无法转换为 android.widget.BaseAdapter - FastScroller
我创建了自己的适配器 - 实现 ListAdapter。我在 XML: 中检查了 fastScrollEnabled android:fastScrollEnabled="true"
。
但是,当列表/网格被绘制时,我得到了一个 ClassCastException:
android - Android L:RecyclerView 的快速滚动
我正在尝试RecyclerView
在包含大量数据的应用程序中使用它,并希望对其进行快速滚动,就像ListView
. 这个答案的方法对我有用ListView
,但对RecyclerView
. 即使我true
在RecyclerView
布局中设置了快速滚动,它仍然不起作用:
是否RecyclerView
支持 Android L 中的快速滚动?在文档中找不到任何关于此的内容。
android - 如何让 FastScroll 与 ExpandableListView 一起工作?
我正在尝试在 ExpandableListView 中启用快速滚动,并且我已经尝试了此链接中的解决方法:android fastScroll 仅涵盖列表的一部分
问题是,每当我展开足够多的组以触发快速滚动条时,它都会给我 NullPointerException 错误。我试过以下代码:
有人可以指导我吗?我非常感谢您的时间和帮助。
非常感谢
android - NoSuchFieldException:Android Lollipop 上的 mFastScroller
我正在尝试实现自定义,它在除Android LollipopFastScrollListener
之外的每个平台上都可以正常工作,它在以下行崩溃:
说:
谁能指导我有关 Android Lollipop 的修复。
android - How to add a fast-scroller to the RecyclerView
Background
On ListView, you could have a fast scroller which allowed you to drag a scrollbar to easily scroll to wherever you wished (using fastScrollEnabled attribute)
Together with "SectionIndexer" class and optionally some attributes, you could have a nice popup that shows as you use this scrollbar (link here).
Such a thing is shown on the contacts app so that you could scroll easily to specific letters.
The problem
RecyclerView doesn't seem to have any of those. Not even a fast-scroll.
The question
How do I add a fast scroller functionality for the RecyclerView?