关于我的应用
我有一个具有全息外观的应用程序.
对于蜂窝前装置,我只是向后推出了Holo主题的一些元素.
使用主题,样式和attrs可以使用CheckBox,RadioButton ……
我想做什么
我使用ListView来显示很多项目.我想在我的ListView上启用快速滚动,我希望它具有全息外观.
我的问题
我有一些困难将快速滚动Drawable集成到我的应用主题中.
到目前为止我尝试过的
>寻找执行此操作的库. HoloEverywhere是
有希望,但没有处理.
>试图自己做:
我刚刚添加了那些drawable:
然后还添加了这个drawable:
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" android:drawable="@drawable/fastscroll_thumb_pressed_holo" /> <item android:drawable="@drawable/fastscroll_thumb_default_holo" /> </selector>
在我的attrs.xml中添加了这个:
<attr name="fastScrollThumbDrawable" format="reference" />
我在themes.xml中添加了这个:
<style name="MyTheme"> <item name="fastScrollThumbDrawable">@drawable/fastscroll_thumb_holo</item> </style>
这个主题在Manifest.xml中正确设置为我的应用程序:
android:theme="@style/MyTheme"
请记住android:fastScrollThumbDrawable doesn’t exist pre-honeycomb.
我希望你能帮我解决这个问题. 原文链接:https://www.f2er.com/android/317864.html