微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何更改水平滚动条的轨道宽度?

如何解决如何更改水平滚动条的轨道宽度?

我有一个使用水平自定义滚动条的水平recyclerView,但是我有一个问题,拇指超过了轨道,如何为滚动条指定轨道的宽度?

这是我的RecyclerView:


<androidx.recyclerview.widget.RecyclerView
    android:id="@+id/itemRecyclerView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:scrollbars="horizontal"
    app:layoutManager=".linearlayoutmanager"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/skinName2"
    android:scrollbaralwaysDrawHorizontalTrack="true"
    android:scrollbarThumbHorizontal="@drawable/scrollbar_horizontal_thumb"
    android:scrollbarTrackHorizontal="@drawable/scrollbar_horizontal_track"
    tools:itemCount="15"
    tools:listitem="@layout/item_item" />

这是我的自定义拇指:


    <?xml version="1.0" encoding="utf-8"?>
    <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item
            android:gravity="center_vertical"
            android:height="1dp">
            <shape
                android:shape="rectangle">
                <solid android:color="#FFFFFF" />
            </shape>
        </item>
    </layer-list>```
    
    and here is my track
    ```<?xml version="1.0" encoding="utf-8"?>
    <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item
            android:gravity="center_vertical"
            android:height="1dp">
            <shape
                android:shape="rectangle">
                <solid android:color="#FFFFFF" />
            </shape>
        </item>
    </layer-list>

问题在这里

enter image description here

有什么想法吗?

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。