【Android】탭으로 전환하지 않는 Siwtch 버튼의 작성
2106 단어 안드로이드AndroidStudioKotlin
Switch 버튼은 통상 탭 혹은 플릭으로 ON/OFF를 전환한다.
플릭만으로의 전환을 실시하고 싶은 경우는 이하를 사용.
SwitchOnlyFlick.kt
class SwitchOnlyFlick : SwitchCompat {
constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet) : super(context, attrs)
constructor(context: Context, attrs: AttributeSet, defStyle: Int) : super(context, attrs, defStyle)
override fun toggle() {}
}
toggle 함수로 아무것도 하지 않게 하면, 탭에 의한 ON/OFF 전환은 행해지지 않는다.
Reference
이 문제에 관하여(【Android】탭으로 전환하지 않는 Siwtch 버튼의 작성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/nakashimaakio/items/29793d30b9aca9aefe76텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)