34

我有一个显示图像、产品名称和产品图像的项目布局。我必须使用约束布局以 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)

4

19 回答 19

39

我发现问题出在充气视图支架上。

我有同样的问题并解决了它

ViewBinding.inflate(inflater)

ViewBinding.inflate(inflater, parent, false)
于 2019-10-21T17:29:51.537 回答
20

在努力解决这个问题时,我想出了问题所在。我的用例是我使用 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));

此视图是包含 View Pager 子视图的父视图。

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

 view.setLayoutParams(new ConstraintLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
于 2019-10-16T01:11:36.807 回答
12

在 ViewPager2 match_parent 的适配器项中设置宽度和高度

于 2020-06-15T06:18:52.433 回答
9

用于match_parent您的viewholder布局ViewPager2

我有同样的错误,有时我在ViewPager2的适配器项中发现问题后,我将其从 更改wrap_contentmatch_parent,并且已修复。

<ImageView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/iv_banner"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/> <!--Change height here to match_parent-->
于 2020-12-17T07:20:03.847 回答
6

你应该这样写:

override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
    val view: View = inflater.inflate(R.layout.yourlayout, parent, false)
    view.layoutParams = ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)
    return ViewHolder(view)
}
inner class ViewHolder(itemView: View) :
    RecyclerView.ViewHolder(itemView) {
}
于 2020-05-31T16:12:49.127 回答
6

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

于 2020-01-14T03:40:14.187 回答
3

viewpager2 项目应具有 match_parent 宽度和高度。但是如果你使用 View Binding 你应该膨胀布局,比如片段:

ViewBinding.inflate(inflater, parent, false)
于 2020-03-30T07:18:13.110 回答
2

我现在面临同样的问题,您的适配器项目宽度和高度必须是 match_parent

于 2020-03-30T17:58:18.723 回答
1

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

于 2020-04-25T10:10:40.143 回答
1

将 android:layout_width 和 android:layout_height 设置为 ViewPager2 和适配器布局的 match_parent

于 2020-08-24T06:52:29.203 回答
1

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

于 2020-02-26T15:19:15.850 回答
0

如果您在约束布局中使用 viewpager2,只需使用相对布局包装 viewpager2:

<RelativeLayout
    android:id="@+id/sub_service_list_view_cont"
    android:layout_width="0dp"
    android:layout_height="0dp"
    app:layout_constraintBottom_toTopOf="@+id/basket"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/view14">

    <androidx.viewpager2.widget.ViewPager2
        android:id="@+id/sub_service_list_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</RelativeLayout>
于 2020-10-05T14:58:25.680 回答
0

如果您不在充气机中使用父级,也可能出现这种情况。此崩溃异常您有:

override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): OnboardViewHolder {
        return OnboardViewHolder(parent.context.inflate(
                R.layout.view_onboard_item, null, false
        ))
    }

这有效:

override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): OnboardViewHolder {
        return OnboardViewHolder(parent.context.inflate(
                R.layout.view_onboard_item, parent, false
        ))
    }
于 2021-04-09T09:50:09.520 回答
0

对于已修复的错误,页面必须填充整个 ViewPager2(使用 match_parent):
将足够的高度com.jackandphantom.circularimageview.RoundedImage设置为match_parent

android:layout_height="match_parent"
于 2022-01-15T14:39:46.950 回答
0

我也遇到了同样的问题,但是当我更改项目视图高度以匹配父项而不是包装内容时,它可以正常工作。

于 2021-12-29T04:56:20.027 回答
0

我遇到了你描述的错误。

首先,问题出现在recyclerview,所以和vipager2无关

其次,受影响的是recycleview的viewholder。

最后,改变viewholder的宽高,使其全部匹配父级。

祝你好运。

于 2021-11-30T10:02:30.150 回答
0

我遇到了这个问题,因为我的 viewpager2 位于带有layout_height="wrap_content"的FragmentContainerView中。

所以我将其更改为:layout_height="match_parent"并解决了问题:)

于 2020-12-04T23:37:33.043 回答
0

我通过wrap_content在父视图中使用来解决这个问题ViewPager2

例子:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    tools:context=".presentation.home.view.BannerFragment">

    <androidx.viewpager2.widget.ViewPager2
        android:id="@+id/view_pager_banner"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

</LinearLayout>

所以它将占用适配器布局的高度。

于 2020-05-14T15:34:03.690 回答
-1

适配器的 layout_width 和 layout_height 必须是 match_parent

于 2020-08-21T08:19:43.973 回答