9
6

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.

ViewPager2でスワイプを無効にする方法

Posted at

setUserInputEnabled を使えばOK :ok_woman:

Javaの場合
viewPager2.setUserInputEnabled(false)
Kotlinの場合
viewPager2.isUserInputEnabled = false


ViewPager の場合だとサブクラスを作って独自に対応などしないといけなかったので、こういうメソッドがあると非常に良いですね。

ViewPager2 いいぞ :muscle:

9
6
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
9
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?