左上角出现小白点
只要是布局里面有滑动的空间开始滑动,有时候不滑动也会出现这种问题
<?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">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/sing_bg"
android:padding="@dimen/dp_16">....</RelativeLayout>
</layout>
因为RecyclerView我使用的是BaseQuickAdapter做的适配,刚开始还以为是这个控件的原因,后来自己写了左滑加载更多的控件,还是出现相同的问题,然后就开始重新查找问题
布局里面有使用ConstraintLayout空间,还以为是这个控件的原因,结果全部换成了LineatLayout 和RelativeLayout还是不行,后来我在外面包了一层LinearLayout 就好啦
xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/sing_bg"
android:padding="@dimen/dp_16">....</RelativeLayout>
</LinearLayout>
</layout>