Giải pháp với ViewPager2 mới
Ngày nay, bạn nên xem xét sử dụng ViewPager2 đó "thay thế ViewPager, giải quyết đa số người tiền nhiệm của nó của đau-điểm" :
- Dựa trên RecyclerView
- Hỗ trợ bố cục RTL (từ phải sang trái)
- Hỗ trợ định hướng dọc
- Hỗ trợ Fragment đáng tin cậy (bao gồm xử lý các thay đổi đối với tập hợp Fragment cơ bản)
- Hoạt ảnh thay đổi tập dữ liệu (bao gồm cả
DiffUtil
hỗ trợ)
Kết quả
Mật mã
Trong Activity / Fragment của bạn, hãy thiết lập ViewPager2:
// MyRecyclerViewAdapter is an standard RecyclerView.Adapter :)
viewPager2.adapter = MyRecyclerViewAdapter()
// You need to retain one page on each side so that the next and previous items are visible
viewPager2.offscreenPageLimit = 1
// Add a PageTransformer that translates the next and previous items horizontally
// towards the center of the screen, which makes them visible
val nextItemVisiblePx = resources.getDimension(R.dimen.viewpager_next_item_visible)
val currentItemHorizontalMarginPx = resources.getDimension(R.dimen.viewpager_current_item_horizontal_margin)
val pageTranslationX = nextItemVisiblePx + currentItemHorizontalMarginPx
val pageTransformer = ViewPager2.PageTransformer { page: View, position: Float ->
page.translationX = -pageTranslationX * position
// Next line scales the item's height. You can remove it if you don't want this effect
page.scaleY = 1 - (0.25f * abs(position))
// If you want a fading effect uncomment the next line:
// page.alpha = 0.25f + (1 - abs(position))
}
viewPager2.setPageTransformer(pageTransformer)
// The ItemDecoration gives the current (centered) item horizontal margin so that
// it doesn't occupy the whole screen width. Without it the items overlap
val itemDecoration = HorizontalMarginItemDecoration(
context,
R.dimen.viewpager_current_item_horizontal_margin
)
viewPager2.addItemDecoration(itemDecoration)
Thêm dấu HorizontalMarginItemDecoration
, đó là một điều tầm thường ItemDecoration
:
/**
* Adds margin to the left and right sides of the RecyclerView item.
* Adapted from https://stackoverflow.com/a/27664023/4034572
* @param horizontalMarginInDp the margin resource, in dp.
*/
class HorizontalMarginItemDecoration(context: Context, @DimenRes horizontalMarginInDp: Int) :
RecyclerView.ItemDecoration() {
private val horizontalMarginInPx: Int =
context.resources.getDimension(horizontalMarginInDp).toInt()
override fun getItemOffsets(
outRect: Rect, view: View, parent: RecyclerView, state: RecyclerView.State
) {
outRect.right = horizontalMarginInPx
outRect.left = horizontalMarginInPx
}
}
Thêm các thứ nguyên kiểm soát mức độ hiển thị của mục trước / sau và lề ngang của mục hiện tại:
<dimen name="viewpager_next_item_visible">26dp</dimen>
<dimen name="viewpager_current_item_horizontal_margin">42dp</dimen>
Cuối cùng thêm ViewPager2
vào bố cục của bạn:
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
Một điều quan trọng: một ViewPager2
mục phải có layout_height="match_parent"
(nếu không nó sẽ ném ra IllegalStateException), vì vậy bạn nên làm điều gì đó như:
<androidx.cardview.widget.CardView 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" <-- this!
app:cardCornerRadius="8dp"
app:cardUseCompatPadding="true">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="280dp">
<!-- ... -->
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>
Ví dụ về PageTransformer
Google đã thêm một hướng dẫn về ViewPager2 có 2 cách PageTransformer
triển khai mà bạn có thể sử dụng làm nguồn cảm hứng: https://developer.android.com/training/animation/screen-slide-2
Giới thiệu về ViewPager2 mới
setPageMargin(-100)
việc có chính xác không?