首页 > 代码库 > Android中滑动控件的不显示

Android中滑动控件的不显示

1、背景介绍

       在使用ScrollView和ListView这样的控件的时候,默认在右手边上是有一个滑动的控件的。在我们用手指滑动的时候,显示出来这个控件会不那么舒服,影响用户体验度。这里就是来说明一下,怎么样不显示滑动控件。


2、ScrollView不显示

        直接上代码,如下:

<ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_below="@id/the_head_view"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:scrollbars="none" >
</ScrollView>

3、ListView不显示

<ListView
        android:scrollbars="none"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >
    </ListView>

4、总结

       实际上只需要一句代码就可以了,就是

android:scrollbars="none"

       这句话就是不显示bar这个控件。但是要注意,ScrollView可能有时候需要配合使用,单独只使用这一个特性,还无法不显示滑动控件。

Android中滑动控件的不显示