代码片段分享

ConstraintLayout 下RecycleView遮挡住

2020-11-03  本文已影响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

上一篇下一篇

猜你喜欢

热点阅读