有人知道如何创建联系人列表中使用的那个大滚动条吗?或者屏幕截图中的那个:
解决方法:
在列表视图上设置android:fastScroll =“true”,或者所有帐户都可以滚动的任何内容.您也可以在theme或settings.xml文件中进行设置.
我的错,
android:fastScrollEnabled
根据下面的评论.
On api target >= 11 you should also use
list.setFastScrollAlwaysVisible(true). Otherwise it may not show up. –
Igor Ganapolsky