美文网首页
MVVM模式下左上角出现小白点

MVVM模式下左上角出现小白点

作者: 萧关逢候骑11 | 来源:发表于2022-01-22 19:46 被阅读0次
图1

左上角出现小白点

只要是布局里面有滑动的空间开始滑动,有时候不滑动也会出现这种问题

<?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>

相关文章

  • MVVM模式下左上角出现小白点

    左上角出现小白点 只要是布局里面有滑动的空间开始滑动,有时候不滑动也会出现这种问题

  • MVVM设计模式

    MVVM设计模式 在介绍MVVM设计模式之前我们先介绍一下DataBinding DataBinding,2015...

  • MVVM设计模式在Android编程中的应用

    MVVM设计模式在Android编程中的应用 大家好,这一期呢,我们来看一下mvvm的设计模式。 Mvvm的意思是...

  • 前端MVVM模式从理论到实战 (一)

    最近在研究mvvm开发模式,仿照着vue写了一套简单的mvvm代码,也顺便来记录一下 在说mvvm模式之前先简单解...

  • 初识Vue

    1. MVVM模式 Vue采用MVVM(Model-View-ViewModel)模式实现,MVVM模式由MVC演...

  • 第二章、MVVM模式原理

    一、MVVM和MVC模式的区别 讲到MVVM模式和MVC模式的区别,网上一大堆讲解的,我只简单讲解一下,MVC模式...

  • Vue快速入门

    MVVM模式 什么是MVVM模式? MVVM(Model-View-ViewModel)是一种软件架构设计模式,由...

  • vue面试问题

    1.MVVM模式和MVC模式 MVVM模式是Model-View-ViewModel的缩写。MVVM是一种设计...

  • MVVM在前端(web)使用

    前端框架vue,MVVM模式 今天咱们不谈iOS,说说web(MVVM模式)。MVVM模式在前端开发应该还是挺多的...

  • MVVM模式架构设计

    环境 AndroidStudio 2.1 MVVM模式 MVVM模式:View,ViewModel,Model,三...

网友评论

      本文标题:MVVM模式下左上角出现小白点

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