我有一个像这样的视图层次结构。我将ConstraintLayout
放在NestedScrollView
内的原因是因为我希望能够将RecyclerView
与Button
窗口小部件一起滚动。
<android.support.v4.widget.NestedScrollView>
<android.support.constraint.ConstraintLayout>
<android.support.v7.widget.Toolbar />
<android.support.v7.widget.RecyclerView />
<Button />
<TextView />
</android.support.constraint.ConstraintLayout>
</android.support.v4.widget.NestedScrollView>
在我尝试将儿童添加到RecyclerView
之前,一切都很好。 似乎他们没有完全水平扩展。我可以看到我的RecyclerView
是全宽(设置背景颜色),但子布局没有。我尝试过变种 - ConstraintLayout,LinearLayout,RelativeLayout。一切都一样。
我的孩子布局:
<android.support.constraint.ConstraintLayout
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="144dp"
android:background="@color/white">
<TextView
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView_above"/>
</android.support.constraint.ConstraintLayout>
奇怪的是,应该正确设置约束(我可以看到在设计模式下,项目正确扩展)。什么可能导致这种情况?
答案 0 :(得分:1)
您如何扩大孩子的布局?我的猜测是您做了这样的事情:LayoutInflater.from(mContext).inflate(R.layout.my_row, null);
上面的错误是通过传递null
作为父项。 (Android Studio的linter也将其标记为警告。)而不是那样,在实现onCreateViewHolder(@NonNull ViewGroup parent, int viewType)
时,像这样给新孩子充气:
View row = LayoutInflater.from(mContext).inflate(R.layout.my_row, parent, false);
其中parent
是传入的参数,因此充气机知道如何处理XML布局根目录下的布局参数。