일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- foldindexed
- 코틀린
- 다시봐
- filternot
- 다시 정리해야함
- 취준기록
- Filter
- 코딩테스트
- recyclerview
- array랑 list
- 알고리즘 인증_1주차
- 다시정리하기
- 알고리즘 인증
- 알고리즘 인증_2주차
- iPortfolio
Archives
- Today
- Total
Moments of growth
[Kotlin] TabLayout swipe 막기 본문
fragment_menu.xml
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/vp_top"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/tl_top" />
MenuFragment.kt
private fun initTabLayout() {
val tabLabel = listOf("홈", "DJ차트", "친구")
TabLayoutMediator(binding.tlTop, binding.vpTop) {
tab, position ->
tab.text = tabLabel[position]
}.attach()
binding.vpTop.isUserInputEnabled = false // swipe 막기
}
스와이프를 막는 방법은 ViewPager2의 isUserInputEnabled 속성을 false로 변경하면 된다.
'Android [Kotlin] 💻🤍' 카테고리의 다른 글
[Kotlin] EditText에서 클릭이나 수정 막기 (0) | 2021.11.19 |
---|---|
[Kotlin] ScrollView 맨위로 버튼 누르면 상단으로 가기 (0) | 2021.11.19 |
[Kotlin] ScrollView 안에 RecyclerView 만드는 방법 (0) | 2021.11.19 |
[Kotlin] AppCompatButton 이미지 넣기 + 버튼 음영 없애기 (0) | 2021.11.19 |
[Kotlin] RecyclerView 가로 모드로 구현 (0) | 2021.11.19 |
Comments