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.
のスクロールバーを取り除くにはどうすればよいHorizontalScrollViewですか?
HorizontalScrollView
以下を xml に追加します。
android:scrollbars="none"
またはプログラムでスクロールバーを非表示にします:
view.setVerticalScrollBarEnabled(false); view.setHorizontalScrollBarEnabled(false);