3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

RecyclerViewで消えないScrollbarを表示する

Posted at

概要

RecyclerViewで要素が多い際に、まだスクロールできることをユーザーに伝えたかったので調べた際のメモです。

Scrollbarを表示する

表示されるようにするだけならRecyclerViewscrollbars項目を指定してやれば良い。
しかしこれだけだと、時間経過でフェードアウトしてしまう。

android:scrollbars="vertical" // 横向きならばhorizontal

Scrollbarが消えないようにする

時間経過で消えないようにするため上述の要素に加えてfadeScrollbarsfalseを指定する。

android:scrollbars="vertical" // 横向きならばhorizontal
android:fadeScrollbars="false"
3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?