隐藏Horizo​​ntalScrollView的滚动条滚动条、Horizo、ntalScrollView

由网友(懵智)分享简介:我怎样才能在一个HorizontalScrollView?How can I get rid of the scrollbars on a HorizontalScrollView?推荐答案以下内容添加到您的XML:Add the following to your xml:android:scrollbar...

我怎样才能在一个HorizontalScrollView?

How can I get rid of the scrollbars on a HorizontalScrollView?

推荐答案

以下内容添加到您的XML:

Add the following to your xml:

android:scrollbars="none"

或隐藏滚动条编程方式:

Or hide the scrollbars programmatically:

view.setVerticalScrollBarEnabled(false); 
view.setHorizontalScrollBarEnabled(false);
阅读全文

相关推荐

最新文章