LoginSignup
14
12

More than 5 years have passed since last update.

ScrollView、HorizontalScrollViewのスクロールバーを消す

Posted at

備忘録として。

ScrollViewの縦のスクロールバーを消したいときはこうする。

ScrollView scrollView = new ScrollView(this);
scrollView.setVerticalScrollBarEnabled(false);

そして、HorizontalScrollViewの横スクロールバーを消したいときはこうする。

HorizontalScrollView hScrollView = new HorizontalScrollView(this);
hScrollView.setHorizontalScrollBarEnabled(false);

xmlで記述するときには、

android:scrollbars:none

と指定する。

これをやるのに、時間がかかったので書いておきます。

14
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
12