我有一个商品布局,在其中显示图像,产品名称和产品图像。我必须使用约束布局以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>
如果我用wrap_content替换match_parent,应用程序崩溃并显示以下错误:-
java.lang.IllegalStateException:页面必须填充整个ViewPager2(使用match_parent)
答案 0 :(得分:6)
我发现问题出在视图支架膨胀上。
我遇到了同样的问题,并解决了该问题
ViewBinding.inflate(inflater)
到
ViewBinding.inflate(inflater, parent, false)
答案 1 :(得分:4)
对我来说,问题是ViewPager2中的页面(即适配器的父/根布局)不是match_parent,因此错误是
java.lang.IllegalStateException: Pages must fill the whole ViewPager2 (use match_parent)
答案 2 :(得分:3)
在努力解决这个问题时,我弄清楚了问题出在哪里。我的用例是我正在使用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));
答案 3 :(得分:2)
在您的ViewPager2 match_parent的适配器项中设置宽度和高度
答案 4 :(得分:1)
我现在遇到了同样的问题,您的适配器项的宽度和高度必须为match_parent
答案 5 :(得分:1)
将android:layout_width和android:layout_height设置为ViewPager2和适配器布局的match_parent
答案 6 :(得分:0)
我有同样的问题。 我使用ViewPager2来显示滑块。但是它的XML项不是MATCH_PARENT。 更改之后,问题得以解决。
答案 7 :(得分:0)
viewpager2项目应具有match_parent宽度和高度。但是如果您使用的是“视图绑定”,则应该增加诸如片段之类的布局:
ViewBinding.inflate(inflater, parent, false)
答案 8 :(得分:0)
我也遇到了同样的问题,解决方案是将高度设置为项目视图的match_parent,即适配器类中使用的布局高度必须为MATCH_PARENT
答案 9 :(得分:0)
我通过在p=...
的父视图中使用wrap_content
来解决此问题
示例:
ViewPager2
因此,它将占用适配器布局的高度。
答案 10 :(得分:0)
您应该这样写:
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) {
}
答案 11 :(得分: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>
答案 12 :(得分:0)
我有同样的错误,有时我在ViewPager2
的适配器项中发现了问题之后,将其从wrap_content
更改为match_parent
,并已修复。
在您match_parent
的{{1}}中使用item
ViewPager2
答案 13 :(得分: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
))
}
答案 14 :(得分:-1)
适配器的layout_width和layout_height必须为match_parent