วิธีแก้ไขด้วย ViewPager2 ใหม่
ปัจจุบันคุณควรพิจารณาใช้ViewPager2ซึ่ง"แทนที่ ViewPager โดยกล่าวถึงจุดเจ็บปวดส่วนใหญ่ของรุ่นก่อน" :
- ขึ้นอยู่กับ RecyclerView
- รองรับโครงร่าง RTL (ขวาไปซ้าย)
- การสนับสนุนแนวตั้ง
- การสนับสนุน Fragment ที่เชื่อถือได้ (รวมถึงการจัดการการเปลี่ยนแปลงคอลเลกชัน Fragment ที่อยู่เบื้องหลัง)
- ภาพเคลื่อนไหวการเปลี่ยนแปลงชุดข้อมูล (รวมถึง
DiffUtil
การสนับสนุน)
ผลลัพธ์
รหัส
ในกิจกรรม / ส่วนของคุณตั้งค่า 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)
เพิ่มHorizontalMarginItemDecoration
ซึ่งเป็นเรื่องเล็กน้อย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
}
}
เพิ่มมิติที่ควบคุมว่าจะมองเห็นรายการก่อนหน้า / ถัดไปได้เท่าใดและระยะขอบแนวนอนของรายการปัจจุบัน:
<dimen name="viewpager_next_item_visible">26dp</dimen>
<dimen name="viewpager_current_item_horizontal_margin">42dp</dimen>
สุดท้ายเพิ่มลงในViewPager2
เค้าโครงของคุณ:
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/viewPager"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
สิ่งสำคัญอย่างหนึ่ง: ViewPager2
ไอเท็มต้องมีlayout_height="match_parent"
(มิฉะนั้นจะพ่น IllegalStateException) ดังนั้นคุณควรทำสิ่งต่างๆเช่น:
<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>
ตัวอย่าง PageTransformer
Google ได้เพิ่มคำแนะนำเกี่ยวกับ ViewPager2 ซึ่งมีPageTransformer
การใช้งาน2 แบบที่คุณสามารถใช้เป็นแรงบันดาลใจได้: https://developer.android.com/training/animation/screen-slide-2
เกี่ยวกับ ViewPager2 ใหม่
setPageMargin(-100)
ทำงานถูกต้องหรือไม่