5
5

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 5 years have passed since last update.

RecyclerViewでスクロールバーの動きがおかしいバグ対処法

Posted at

support:recyclerview-v7:21.0.0のRecyclerViewをスクロールすると、1つ目のアイテムをすぎたところでスクロールバーがジャンプしたり一番下まで行ってもスクロールバーのボトムに変な余白がついてしまったりすることがあります。

何を言っているかわからないと思いますが、つまりこんな感じです。

ezgif.com-crop.gif

結論から言うと、これは supportライブラリのバグです。詳しくはこちら
すでに修正されているので、supportライブラリのバージョンを21.0.2に上げれば直ります。

dependencies {
    compile 'com.android.support:appcompat-v7:21.0.2'
    compile 'com.android.support:recyclerview-v7:21.0.2'
}
5
5
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
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?