ScrollView常用属性汇总

android:scrollbars 设置滚动条显示。none(隐藏),horizontal(水平),vertical(垂直)。

android:scrollbarFadeDuration 设置滚动条淡出效果(从有到慢慢的变淡直至消失)时间,以毫秒为单位。Android2.2中滚动条滚动完之后会消失,再滚动又会出来,在1.5、1.6版本里面会一直显示着。

android:scrollbarSize 设置滚动条的宽度。

android:scrollbarStyle 设置滚动条的风格和位置。设置值:insideOverlay、insideInset、outsideOverlay、outsideInset

android:scrollbarThumbHorizontal 设置水平滚动条的drawable。     

android:scrollbarThumbVertical 设置垂直滚动条的drawable.

android:scrollbarTrackHorizontal 设置水平滚动条背景(轨迹)的色drawable

android:soundEffectsEnabled 设置点击或触摸时是否有声音效果

只是隐藏,滚动效果还在
ScrollView sView = (ScrollView)findViewById(R.id.sView);
 sView.setVerticalScrollBarEnabled(false); //隐藏垂直滚动条
 sView.setHorizontalScrollBarEnabled(false); //隐藏水平滚动条

你可能感兴趣的:(滚动条,隐藏,scrollview)