티스토리 뷰
반응형
ViewPager Indicator
뷰페이저로 이동할때마다 지금이 몇번째 페이지인지 알 수 있도록 하단에 인디케이터를 달아줬다.
인디케이터로 사용할 shape 만들기
/drawable 안에
shape_circle_gray.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="@color/gray"/>
</shape>
shape_circle_purple
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="@color/purple_200"/>
</shape>
뷰페이저 밑에 인디케이터 위치시키기
activity_main.xml
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/constraintLayout2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="30dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
<ImageView
android:id="@+id/indicator0_iv_main"
android:layout_width="10dp"
android:layout_height="10dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/shape_circle_purple" />
<ImageView
android:id="@+id/indicator1_iv_main"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_marginStart="5dp"
app:layout_constraintBottom_toBottomOf="@+id/indicator0_iv_main"
app:layout_constraintStart_toEndOf="@+id/indicator0_iv_main"
app:layout_constraintTop_toTopOf="@+id/indicator0_iv_main"
app:srcCompat="@drawable/shape_circle_gray" />
<ImageView
android:id="@+id/indicator2_iv_main"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_marginStart="5dp"
app:layout_constraintBottom_toBottomOf="@+id/indicator1_iv_main"
app:layout_constraintStart_toEndOf="@+id/indicator1_iv_main"
app:layout_constraintTop_toTopOf="@+id/indicator1_iv_main"
app:srcCompat="@drawable/shape_circle_gray" />
</androidx.constraintlayout.widget.ConstraintLayout>
액티비티에 코드 작성하기
MainActivity.kt
// indicator
viewPager_main.addOnPageChangeListener(object : ViewPager.OnPageChangeListener{
override fun onPageScrollStateChanged(p0: Int) {
}
override fun onPageScrolled(p0: Int, p1: Float, p2: Int) {
}
override fun onPageSelected(p0: Int) {
indicator0_iv_main.setImageDrawable(getDrawable(R.drawable.shape_circle_gray))
indicator1_iv_main.setImageDrawable(getDrawable(R.drawable.shape_circle_gray))
indicator2_iv_main.setImageDrawable(getDrawable(R.drawable.shape_circle_gray))
when(p0){
0 -> indicator0_iv_main.setImageDrawable(getDrawable(R.drawable.shape_circle_purple))
1 -> indicator1_iv_main.setImageDrawable(getDrawable(R.drawable.shape_circle_purple))
2 -> indicator2_iv_main.setImageDrawable(getDrawable(R.drawable.shape_circle_purple))
}
}
})
뷰페이저 코드
버튼 클릭으로 화면 넘기는법
반응형
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 백준알고리즘
- 코틀린 데이터바인딩
- 전화번호목록 파이썬
- 시뮬레이터 키보드
- 코틀린 바텀네비게이션
- 소수 구하기 파이썬
- 카카오 기출
- 투포인터 알고리즘 파이썬
- counting sort
- 안드로이드
- 카카오 키해시
- 투포인터 알고리즘
- kotlin fragment
- 코틀린 리스트뷰
- 안드로이드 키해시
- 카카오톡으로 로그인 오류
- TextFormField keyboard
- 백준
- 프로그래머스
- 코틀린 뷰바인딩
- 백준 1806
- 안드로이드 카카오톡으로 로그인
- 데이터바인딩 뷰바인딩 차이
- 백준 2003
- 백준 1644
- flutter simultor
- 파이썬 최대공약수
- 코틀린
- Kotlin
- 코틀린 뷰페이저
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함