Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何摆脱 a 上的滚动条HorizontalScrollView?
HorizontalScrollView
将以下内容添加到您的 xml:
android:scrollbars="none"
或以编程方式隐藏滚动条:
view.setVerticalScrollBarEnabled(false); view.setHorizontalScrollBarEnabled(false);