我正在开发xamarin android。我正在使用ListView进行快速滚动,并将字母索引显示为气泡文本。
我想自定义滚动条,指示符,气泡文字。我正在尝试应用" fastScrollStyle"但我的样式不适用于style.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/White">
<LinearLayout
android:id="@+id/LookupSearchView_Container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@color/PrimaryColor"
android:layout_alignParentTop="true">
<android.support.v7.widget.SearchView
android:id="@+id/Lookup_SearchView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:iconifiedByDefault="false"
android:layout_margin="5dp"
app:queryHint="Search here"
app:defaultQueryHint="Search here"
app:queryBackground="@android:color/transparent"
android:background="@drawable/radius_background"/>
</LinearLayout>
<ListView
android:id="@+id/Lookup_ListView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/LookupSearchView_Container"
android:paddingLeft="@dimen/ScreenLayoutMargin"
android:paddingRight="@dimen/ScreenLayoutMargin"
android:paddingBottom="@dimen/ScreenLayoutMargin"
android:fastScrollEnabled="true"
android:fastScrollAlwaysVisible="true"
android:smoothScrollbar="true"
android:fastScrollStyle="@style/FastScrollStyle"/>
</RelativeLayout>
recycler_view_fast_scroller__bubble.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:topLeftRadius="44dp"
android:topRightRadius="44dp"
android:bottomLeftRadius="44dp"
android:bottomRightRadius="0px"/>
<solid android:color="@color/PrimaryColor"/>
<size
android:height="44dp"
android:width="44dp"/>
</shape>
style.xml
<style name="FastScrollStyle">
<item name="android:fastScrollPreviewBackgroundRight">@drawable/recycler_view_fast_scroller__bubble</item>
<item name="android:fastScrollOverlayPosition">aboveThumb</item>
<item name="android:fastScrollTextColor">@color/White</item>
</style>
对我来说没有任何作用。 它总是使用默认样式。
图片下方显示默认行为。我想制作蓝色气泡,尺寸应该更小,滚动条也应该更薄。