美文网首页代码片段分享
ConstraintLayout 下RecycleView遮挡住

ConstraintLayout 下RecycleView遮挡住

作者: 花艺荣 | 来源:发表于2020-11-03 15:45 被阅读0次

    ConstraintLayout 中有viewpager布局,viewpager中的页面用的fragment,
    fragment的布局在布局文件中预览显示没问题,但一运行就有部分控件看不见,
    具体表现是被fragment中的Recycleview遮挡了(或挤出)其后续的兄弟view。

    改正,ConstraintLayout 中有viewpager中layout_height使用约束表示

     <androidx.viewpager.widget.ViewPager
                android:id="@+id/view_pager"
                android:layout_width="0dp"
                android:layout_height="0dp"
                android:background="#fff"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toBottomOf="@id/tabs"
                app:layout_constraintBottom_toBottomOf="parent"
                />
    

    之前用的warp_content

    相关文章

      网友评论

        本文标题:ConstraintLayout 下RecycleView遮挡住

        本文链接:https://www.haomeiwen.com/subject/ivzbvktx.html