【Android Studio】Number Picker를 루프시키지 않게 한다
1764 단어 안드로이드AndroidStudioKotlin
NumberPicker (드럼 롤 UI) 사용할 때 루프를 방지하는 방법.
wrapSelectorWheel
를 false
로 하면 OK입니다.1. 레이아웃
activity_main.xml
<NumberPicker
android:id="@+id/picker"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
2. 처리
MainActivity.kt
binding.picker.minValue = 0
binding.picker.maxValue = 5
binding.picker.wrapSelectorWheel = false
Reference
이 문제에 관하여(【Android Studio】Number Picker를 루프시키지 않게 한다), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/nakashimaakio/items/202f0057dfab0b41b653텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)