Android中listview滚动条常见

来源:互联网 发布:三国杀网络错误请重试 编辑:程序博客网 时间:2024/05/02 02:14

在xml中需要设置两项内容:

    <ListView
        android:id="@+id/listView_data_chart_list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fadeScrollbars="false"
        android:scrollbarAlwaysDrawVerticalTrack="true" >


    </ListView>


fadeScrollbars和scrollbarAlwaysDrawVerticalTrack一个也不能少。

0 0