我需要使用自定义背景资产自定义快速滚动字母预览(屏幕截图中的大 M),但我找不到任何有关它的文档。你能帮我吗?
问问题
3019 次
2 回答
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>
于 2015-05-26T08:19:10.880 回答
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是可绘制的,您可以根据自己的喜好自定义
PS:不要忘记在清单中为您的活动设置样式。
如果我错了,请纠正我,但我认为已经有很多问题在讨论同一个问题。
祝你好运。
于 2015-05-25T15:10:58.087 回答