【错误记录】约束布局报错 ( Missing Constraints in ConstraintLayout. This view is not constrained. It only has )

这篇具有很好参考价值的文章主要介绍了【错误记录】约束布局报错 ( Missing Constraints in ConstraintLayout. This view is not constrained. It only has )。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。





一、报错信息



约束布局中 , 如果不给组件添加约束 , 就会报如下错误 :

Missing Constraints in ConstraintLayout
This view is not constrained. It only has designtime positions, 
so it will jump to (0,0) at runtime unless you add the constraints  
The layout editor allows you to place widgets anywhere on the canvas, 
and it records the current position with designtime attributes (such as layout_editor_absoluteX). 
These attributes are not applied at runtime, so if you push your layout on a device, 
the widgets may appear in a different location than shown in the editor. 
To fix this, make sure a widget has both horizontal and vertical 
constraints by dragging from the edge connections.  
Issue id: MissingConstraints  Vendor: Android Open Source Project Contact: 
https://groups.google.com/g/lint-dev 
Feedback: https://issuetracker.google.com/issues/new?component=192708  

【错误记录】约束布局报错 ( Missing Constraints in ConstraintLayout. This view is not constrained. It only has )





二、解决方案




1、手动添加约束 ( 推荐 )


Design 界面拖动添加约束操作 : 手动拖动 布局上下左右的 约束按钮 , 添加约束 ;

【错误记录】约束布局报错 ( Missing Constraints in ConstraintLayout. This view is not constrained. It only has )
Code 代码添加约束 : 在代码中 , 添加 如下 上下左右的 约束 ;

app:layout_constraintBottom_toTopOf=“@+id/guideline3”
app:layout_constraintEnd_toEndOf=“parent”
app:layout_constraintStart_toStartOf=“parent”
app:layout_constraintTop_toTopOf=“parent”


组件约束完整示例如下 :

    <androidx.fragment.app.FragmentContainerView
        android:id="@+id/fragmentContainerView1"
        android:name="kim.hsl.livedatademo.Fragment1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toTopOf="@+id/guideline3"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

2、自动添加约束


使用 Design 面板中的 Infer Constraints 工具 , 可以自动为组件添加约束 ;

【错误记录】约束布局报错 ( Missing Constraints in ConstraintLayout. This view is not constrained. It only has )文章来源地址https://www.toymoban.com/news/detail-480065.html

到了这里,关于【错误记录】约束布局报错 ( Missing Constraints in ConstraintLayout. This view is not constrained. It only has )的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • opencv拉流出现missing picture in access unit with size 4错误解决

    我们使用opencv作为拉流客户端,获取画面后进行图像处理并推流(使用ffmpeg库)。 opencv解码同样使用ffmpeg库。 我们要求opencv能根据业务不断进行拉流操作,等效的逻辑代码如下: 注意代码中 // 无流时会有20-30s超时时间 注释的地方cap.open() 和 cap.read(frame),后面会用到。 在一

    2024年01月20日
    浏览(42)
  • Required request body is missing: 前端接口报错错误解决

    在前几天的工作中遇到了一个小小的问题 这是完整报错: 这个接口在Apifox上经过测试是没有问题的,那么因此就是前端接口设置出了问题。 解决方法: 这个接口报错的大意是:必需的请求正文缺失 因此检查一下接口文档,发现数据是写在body里的 因此返回检查接口代码,代

    2024年02月15日
    浏览(46)
  • 解决Git提交代码报错: ERROR: commit xxxxx: missing Change-Id in message footer

    在近期的工作中完成代码修改提交代码时Git报错并提示提交不成功,具体错误如下:  原因是Change-Id缺失。至于解决方法,Git在报错时已经提示了,如下图黄框所示: 首先,复制命令  gitdir=$(git rev-parse --git-dir); scp -p -P 29418 lijunlin@192.168.64.47:hooks/commit-msg ${gitdir}/hooks/ 并执行

    2024年02月05日
    浏览(54)
  • 创建vue项目的时候报错:Skipped git commit due to missing username and email in git config.

    git 进行初始化提交 没有绑定 对应的 git用户名和邮箱 终端进行配置 以此进行输入即可 只要不报错就没有问题 git config --global user.name \\\"xxxx\\\" git config --global user.email \\\"xxxx\\\" 配置完成后进行查看 查看配置的用户名: git config user.name 查看配置的邮箱名: git config user.email

    2024年02月12日
    浏览(36)
  • Vivado报错:[Opt 31-67] Problem: A LUT6 cell in the design is missing a connection on input pin I5

    具体报错内容如下: [Opt 31-67] Problem: A LUT6 cell in the design is missing a connection on input pin I5, which is used by the LUT equation. This pin has either been left unconnected in the design or the connection was removed due to the trimming of unused logic. The LUT cell name is: design_1_i/pingpang_write_buff_0/inst/FSM_sequential_ram_wr_stat

    2023年04月24日
    浏览(38)
  • 错误记录:Unknown column ‘xxx‘ in ‘where clause‘

    这个错误意思是没有找到where分句中的字段名,个人总结存在三种错误情况。判断错误方式可以直接在数据库运行语句,进一步判断是代码问题还是表格问题。 注意在一些sql版本中,字符串只能用双引号包裹。测试是否是这个错误很简单,直接在数据库中运行语句即可。 如果

    2024年02月11日
    浏览(56)
  • 【错误记录】Uncaught SyntaxError: Not available in legacy mode

    错误记录 :Uncaught SyntaxError: Not available in legacy mode 错误描述 :在vite脚手架项目当中,使用vue-i18n插件进行国际化多语言时,报错 解决方案 : 在引入vue-i18n 处,添加 legacy: false 如果对项目不熟悉,可以在全局下搜索createI18n 再添加    

    2024年02月13日
    浏览(46)
  • Android约束布局

    一、 嵌套布局效率可能很低。 在 Android 开发中,我们常常需要使用嵌套布局来实现某些较复杂的界面效果。但是嵌套层级太深会带来一些问题,主要包括: 视图层级过深,导致内存占用过高和性能下降。Android 需要为每个 View 对象分配内存,嵌套层级过深会创建很多 View 对象,占用

    2024年02月07日
    浏览(31)
  • Android4:约束布局

    创建项目 My Constraint Layout 一般创建项目之后 activity_main.xml 文件默认就是采用约束布局,如: 这里先把默认的删除 TextView 掉,切换到 Design 模式 使用约束将Button处于水平居中和垂直居中 对应的 Code 多个视图之间进行约束 添加另一个按钮button4,鼠标拖动button4的空心圆连接到

    2024年02月12日
    浏览(37)
  • IDEA报错:无法自动装配。找不到 ‘xxxService‘ 类型的 Bean。【错误记录】

    这个问题卡了两天,deptService一直报红,现在终于解决了  原因:在给Application添加scanBasePackages属性时写到了放Conteoller层的controller文件内,而Service层文件都在此文件夹之外导致无法扫描到service类型的bean  解决方法: 在application里加上三层架构文件夹所在的文件夹    已不报

    2024年02月11日
    浏览(49)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包