LoginSignup
2
0

More than 3 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

2
0
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
2
0