How to set margin for Vertical Scrollbar from the right edge in ListView?

后端 未结 3 888
梦毁少年i
梦毁少年i 2020-12-28 16:30

For Android Platform:

I need to put margin on right side of the vertical scrollbar in listview (it is customized). Please see the attached image. Default scrollbar s

相关标签:
3条回答
  • 2020-12-28 16:45

    Refer to documentation on android:scrollbarStyle attribute of View. The style you probably want to use is insideOverlay (in conjunction with android:paddingRight).

    Something like

    <LinearLayout android:orientation="vertical"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center_horizontal"
        android:paddingRight="50dip">
        <ListView
            android:id="@+id/scrollable_table" 
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:scrollbarStyle="insideOverlay">
        .
        .
        .
    
    0 讨论(0)
  • 2020-12-28 16:51

    Try enabling fast scroll, it does the job most of the time:

    <ListView
        android:id="@+id/chapter_list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:fastScrollEnabled="true"/>
    
    0 讨论(0)
  • 2020-12-28 17:00

    If you care about your design and want to apply the style globally use this.


    res/values/styles.xml

    <item name="android:scrollbarThumbVertical">@drawable/scrollbar</item>
    

    res/drawable/scrollbar.xml

    <?xml version="1.0" encoding="utf-8"?>
    <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:right="4dp"> <!-- Your Margin -->
            <shape>
                <solid android:color="@color/red500" /> <!-- Your Color -->
                <corners android:radius="2dp" /> <!-- Your Radius -->
                <size android:width="4dp" /> <!-- Your Width -->
            </shape>
        </item>
    </layer-list>
    

    All the other answers were created by developers, not designers like myself.

    Result

    Good ScrollBar

    0 讨论(0)
提交回复
热议问题