7
페이지는 전체 ViewPager2를 채워야합니다 (match_parent 사용).
이미지, 제품 이름 및 제품 이미지를 표시하는 항목 레이아웃이 있습니다. 구속 조건 레이아웃을 사용하여 1 : 1.5 배급으로 이미지를 표시해야합니다. 그러나 작은 이미지를로드하면 텍스트 아래에 표시되지 않습니다. 아래는 XML 항목 코드입니다. <?xml version="1.0" encoding="utf-8"?> <layout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"> <androidx.constraintlayout.widget.ConstraintLayout android:id="@+id/coordinatorLayoutCartRoot" android:layout_width="match_parent" android:layout_height="match_parent"> <com.jackandphantom.circularimageview.RoundedImage android:id="@+id/imageViewSlider" android:layout_width="match_parent" android:layout_height="0dp" android:scaleType="centerCrop" app:layout_constraintBottom_toTopOf="@id/tvTitle" app:layout_constraintDimensionRatio="WH,1:1.4" app:layout_constraintEnd_toEndOf="parent" …