3
1

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.

【Android】NumberPickerでフォーカスが当たらないようにする

Last updated at Posted at 2019-08-21

これをやめたい。

解決法

xmlにandroid:descendantFocusability="blocksDescendants" を追加してあげればOK。

<NumberPicker
    android:id="@+id/num_picker_1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:descendantFocusability="blocksDescendants" //追加
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="parent"/>

android - Disable soft keyboard on NumberPicker - Stack Overflow

3
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?