如何自定义快速滚动预览字母

时间:2015-05-25 14:42:47

标签: android customization fastscroll

我需要使用自定义后台资源自定义快速滚动字母预览(屏幕截图中的大M),但我无法找到有关它的任何文档。你能救我一下吗?

enter image description here

2 个答案:

答案 0 :(得分:6)

感谢@MAB并查看Lollipop源代码,我设法获得了我需要的内容

我的 c_fastscroller_preview.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<corners
    android:topLeftRadius="44dp"
    android:topRightRadius="44dp"
    android:bottomLeftRadius="44dp" />
<padding
    android:paddingLeft="22dp"
    android:paddingRight="22dp" />

<solid android:color="@color/c_red_e60000" /></shape>

c_fastscroller_thumb.xml 是:

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true"
    android:drawable="@drawable/c_fastscroll_thumb" />
<item
    android:drawable="@drawable/c_fastscroll_thumb" /></selector>

在我的应用程序中 styles.xml

        <!-- This belongs in a FastScroll style -->
    <item name="android:fastScrollThumbDrawable">@drawable/c_fastscroller_thumb</item>
    <item name="android:fastScrollPreviewBackgroundRight">@drawable/c_fastscroller_preview </item>
    <item name="android:fastScrollOverlayPosition">aboveThumb</item>
    <item name="android:fastScrollTextColor">@color/c_white</item>

答案 1 :(得分:2)

您可以通过在res/values/styles.xml

下创建自定义样式来实现这一目标
<style name="AppTheme" parent="AppBaseTheme">
    <item name="android:fastScrollThumbDrawable">@drawable/fastscroll_thumb</item>
    <item name="android:fastScrollOverlayPosition">atThumb</item>
    <item name="android:fastScrollTextColor">@color/your_color</item>
    <item name="android:fastScrollTrackDrawable">@drawable/fastscroll_thumb_pressed</item>
</style>

其中 fastScroll_thumb 是选择器

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/fastscroll_thumb_pressed" android:state_pressed="true"/>
    <item android:drawable="@drawable/fastscroll_thumb_default"/>
</selector>

fastfastscroll_thumb_pressed / fastscroll_thumb_default 是可以根据自己的喜好自定义的drawable

PS:不要忘记在清单中为您的活动设置样式。

如果我错了,请纠正我,但我认为已经有很多问题在讨论同样的问题。

祝你好运。