使用Recyclerview的Android滚动条高度

时间:2015-07-22 21:54:35

标签: android scrollbar android-recyclerview

我有一个带有对象列表的recyclerview。滚动条的高度约为2项我需要设置它的高度为1项。如何更改滚动条的长度/高度?

XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.tinbytes.samples.showhidetoolbar.MainActivity">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/Friends"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:cacheColorHint="@android:color/transparent"
        android:clipToPadding="false"
        android:fadeScrollbars="true"
        android:paddingTop="?attr/actionBarSize"
        android:scrollbars="vertical"/>

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?attr/colorPrimary"
        android:minHeight="?attr/actionBarSize" />
</RelativeLayout>

我的问题的屏幕截图:

enter image description here

0 个答案:

没有答案