页面必须填满整个ViewPager2(使用match_parent)


11

我有一个项目布局,在其中显示图像,产品名称和产品图像。我必须使用约束布局以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"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:rounded_radius="0"
            tools:src="@tools:sample/avatars" />

        <TextView
            android:id="@+id/tvTitle"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:padding="4dp"
            android:text="Fitted crew neck sweater"
            android:textColor="@color/colorBlack"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@id/imageViewSlider" />

        <TextView
            android:id="@+id/tvPrice"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:padding="4dp"
            android:text="$34.00"
            android:textColor="@color/colorBlack"
            android:textStyle="bold"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@id/tvTitle" />

    </androidx.constraintlayout.widget.ConstraintLayout>
</layout>
  1. 输出长图:-https : //i.imgur.com/QVnljX6.png
  2. 输出小图像:-https : //i.imgur.com/0ZwkVwE.png

如果我用wrap_content替换match_parent,应用程序崩溃并显示以下错误:-

java.lang.IllegalStateException:页面必须填充整个ViewPager2(使用match_parent)


如果要更改页面高度,只需更改viewpagers的高度。
user3783123 '19

@Mahesh我有同样的问题。找到解决方案了吗?
androidStud

@androidStud还没有
Mahesh Babariya

@MaheshBabariya请参阅下面的回复。
androidStud

是的,将其设置为match_parent,如果要缩小它,请尝试在视图内部或使用视图分页器本身进行缩放。
Tobias Reich

Answers:


10

我发现问题出在视图固定器膨胀中。

我遇到了同样的问题并解决了它的变化

ViewBinding.inflate(inflater)

ViewBinding.inflate(inflater, parent, false)

1
这不是答案,viewPagger2始终需要项布局以匹配父项的高度和宽度。修复约束。
Indra As Lesmana

5

在努力解决这个问题的同时,我弄清楚了问题出在哪里。我的用例是我正在使用androidx.viewpager2.widget.ViewPager2,并在RecyclerView中调用普通视图。

如果您仔细地注意到该错误,您将看到以下内容:

 java.lang.IllegalStateException: Pages must fill the whole ViewPager2 (use match_parent)
    at androidx.viewpager2.widget.ViewPager2$2.onChildViewAttachedToWindow(ViewPager2.java:170)

第二行是主要问题的关键。如果打开ViewPager2.java,您将看到

 private RecyclerView.OnChildAttachStateChangeListener enforceChildFillListener() {
    return new RecyclerView.OnChildAttachStateChangeListener() {
        @Override
        public void onChildViewAttachedToWindow(@NonNull View view) {
            RecyclerView.LayoutParams layoutParams =
                    (RecyclerView.LayoutParams) view.getLayoutParams();
            if (layoutParams.width != LayoutParams.MATCH_PARENT
                    || layoutParams.height != LayoutParams.MATCH_PARENT) {
                throw new IllegalStateException(
                        "Pages must fill the whole ViewPager2 (use match_parent)");
            }
        }

        @Override
        public void onChildViewDetachedFromWindow(@NonNull View view) {
            // nothing
        }
    };
}

Android不会采用xml中分配的match_parent来附加视图。将来的改进可能会在下一版ViewPager2中进行。

无论如何,现在要解决它,请将布局参数显式设置为MATCH_PARENT。

 view.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));

该视图是包含视图分页器子级的父视图。

在您的情况下,它将是androidx.constraintlayout.widget.ConstraintLayout。

 view.setLayoutParams(new ConstraintLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));

使用此view.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,ViewGroup.LayoutParams.MATCH_PARENT))解决;
Vishal Kottarathil

1

对我来说,问题是ViewPager2中的页面(即适配器的父/根布局)不是match_parent,因此错误是 java.lang.IllegalStateException: Pages must fill the whole ViewPager2 (use match_parent)


1

我现在遇到同样的问题,您的适配器项目的宽度和高度必须为match_parent


0

我有同样的问题。我使用ViewPager2来显示滑块。但是它的XML项不是MATCH_PARENT。更改之后,问题得以解决。


0

viewpager2项目应具有match_parent宽度和高度。但是,如果您使用的是“视图绑定”,则应增加诸如片段之类的布局:

ViewBinding.inflate(inflater, parent, false)

0

我也面临同样的问题,解决方案是将高度设置为项目视图的match_parent,即适配器类中使用的布局高度必须为MATCH_PARENT

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.