3

セレクター(state_pressed、state_focus、...)でスクロールバーのドローアブルを変更しようとしましたが、うまくいきませんでした。

スクロールビュー

<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroll" 
android:layout_width="fill_parent"     
android:layout_height="wrap_content"
android:scrollbarSize="5dp"
android:scrollbarThumbVertical="@drawable/custom_scrollbar" >

セレクタ

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

     <item      
         android:state_focused="true"     
         android:drawable="@drawable/scrollbar_pressed" /> 

     <item android:drawable="@drawable/scrollbar" />
</selector> 

2 つのドローアブルの 1 つ。唯一の違いは色です

<shape xmlns:android="http://schemas.android.com/apk/res/android">    
    <gradient
        android:startColor="@color/grey" 
        android:endColor="@color/dark_grey"            
        android:angle="0" />
    <stroke 
        android:width="1dp"
        android:color="@color/white"/> 
    <corners android:radius="6dp" />
</shape>

これに対する他の解決策はありますか?

4

0 に答える 0