Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- suspend programming
- 성빈랜드
- 피보나치 수 2
- Android
- 실버 4
- 최댓값 최솟값
- compose
- LazyRow
- gradlew
- 브론즈 1
- 백준
- capitalize
- Bitrise
- keystore
- kotlin
- LazyColumn
- navigation component
- 브론즈1
- 실버2
- DB 기능
- Activirty
- 데이터베이스 첫걸음
- github action
- 개발하는 정대리
- .github
- Myungpyo Shim
- 2레벨
- 프로그래머스
- DB
- 데이터베이스
Archives
- Today
- Total
plzy의 개발 블로그
[Android] ViewPager2 어떻게 써야할까? 본문
ViewPager2 어떻게 써야할까?
뷰페이저란
데이터를 페이지 단위로 표시하고,
좌/우 뒤집기(flip)을 통해 페이지를 전환할 수 있도록 만들어주는 컨테이너 이다.
어떻게 써야하는지 알아보도록 하자.
먼저 build.grade에 추가해야한다.
dependencies {
implementation("androidx.viewpager2:viewpager2:1.0.0")
}
그다음 2개의 xml를 추가해야한다.
첫번쩨 xml 은 viewPager의 부모가 되는 xml 이고
두번째 xml은 viewPager의 자식이 되는 xml 이다.
- activity_main_view_pager.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/main_view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true" />
<!-- viewpager 애니매이션-->
<com.tbuonomo.viewpagerdotsindicator.DotsIndicator
android:id="@+id/dots_in"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="60dp"
app:dotsColor="#F1F1F1"
app:dotsCornerRadius="8dp"
app:dotsSize="16dp"
app:dotsSpacing="4dp"
app:dotsWidthFactor="2.5"
app:progressMode="true" />
<ImageView
android:id="@+id/next_btn"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:src="@drawable/right"
android:textStyle="bold" />
<ImageView
android:id="@+id/previous_btn"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/left"
android:textStyle="bold" />
</RelativeLayout>
- activity_pager_item의 xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center_horizontal"
android:id="@+id/pager_item_bg">
<ImageView
android:id="@+id/pager_item_image"
android:layout_width="350dp"
android:layout_height="350dp"
android:layout_marginTop="90dp"
android:layout_marginBottom="20dp"
/>
<TextView
android:id="@+id/pager_item_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="뷰페이저 아이템 레이아웃"
android:textSize="30sp"
android:textAlignment="center"
android:gravity="center_horizontal" />
</LinearLayout>
--알아둬야 할것--
ViewPager에서 ViewPager2로 바뀐점은 Recyclerview 형태를 띄게 됐다는 것이다.
RecyclerView를 할 수 있으면 ViewPage2도 쉽게 할 수 있다.
Recyclerview와 똑같은 형태로 만들어준다.
data class
class PageItem(val bgColor: Int, val image: Int, val content: String)
Adapter
class PageRecyclerAdapter(private var pageList: ArrayList<PageItem>) : RecyclerView.Adapter<PageViewHolder>(){
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): PageViewHolder {
return PageViewHolder(LayoutInflater.from(parent.context).inflate(R.layout.pager_item, parent, false))
}
override fun getItemCount(): Int {
return pageList.size
}
override fun onBindViewHolder(holder: PageViewHolder, position: Int) {
holder.bindWithView(pageList[position])
}
}
MainAcitivty
//pagelist
private var pageItemList = ArrayList<PageItem>()
//Adapter 가져오기
private lateinit var myIntroPagerRecyclerAdapter: PageRecyclerAdapter
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main_view_pager)
var i = 0
previous_btn.setOnClickListener {
Log.d(TAG, "MainActivity - 이전 버튼 클릭")
main_view_pager.currentItem = main_view_pager.currentItem - 1
i--
Log.d(TAG, "$i")
}
next_btn.setOnClickListener {
Log.d(TAG, "MainActivity - 다음 버튼 클릭")
main_view_pager.currentItem = main_view_pager.currentItem + 1
i++
Log.d(TAG, "$i")
//i가 2 보다 클시, 다른 액티비티로 이동
if (i > 2) {
val intent = Intent(this, SubActivity::class.java)
startActivity(intent)
Log.d(TAG, "$i")
}
}
pageItemList.add(PageItem(R.color.design_default_color_primary, R.drawable.item1, "첫번째 화면",))
pageItemList.add(PageItem(R.color.design_default_color_primary, R.drawable.item2, "두번째 화면",))
pageItemList.add(PageItem(R.color.black, R.drawable.item3, "3번째 화면"))
//어뎁터 연결
myIntroPagerRecyclerAdapter = PageRecyclerAdapter(pageItemList)
// 뷰페이저에 설정
main_view_pager.apply {
//Adapter 연결
adapter = myIntroPagerRecyclerAdapter
//수평으로 설정
orientation = ViewPager2.ORIENTATION_HORIZONTAL
dots_in.setViewPager2(this)
}
}
이런식으로 쉽게 ViewPager2를 만들 수 있다.
'Android' 카테고리의 다른 글
[FIX] Android Studio 먹통일 때 (0) | 2022.01.06 |
---|---|
[Android] Activity life cycle 완벽 분석하기 (0) | 2021.06.29 |
[Android] Android (Singleton pattern) 이란 무엇인가 ? (2) | 2021.03.09 |
[Android] MVVM 패턴이란 무엇인가 (0) | 2021.03.06 |
[Android] Room 어떻게 써야할까 ? (0) | 2021.02.19 |