android之layout_toLeftOf和layout_toRightOf出现的错误

错误是这样的,布局文件如下,总是在SeekBar里面的这一句android:layout_toLeftOf=”@id/voice_max”报错,差点气得我吐血,明明没有错误的. 

大家好,又见面了,我是全栈君。

错误是这样的,布局文件如下,总是在SeekBar里面的这一句android:layout_toLeftOf=”@id/voice_max”报错,差点气得我吐血,明明没有错误的.

 

<ImageView 
	        android:id="@+id/voice_min"
	        android:layout_width="wrap_content"
	        android:layout_height="wrap_content"
	        android:layout_alignParentLeft="true"
	        android:layout_centerVertical="true"
	        android:background="@drawable/voice_min"/>
<SeekBar 
	        android:id="@+id/sb_voice"
	        android:layout_height="wrap_content"
	        android:layout_width="fill_parent"
	        android:layout_centerVertical="true"
	        android:layout_toLeftOf="@id/voice_max"
	        android:layout_toRightOf="@id/voice_min"
	        android:paddingLeft="5dp"
	        android:paddingRight="5dp"
	        android:background="@drawable/voice_seekbar_bg"
	        />
<ImageView 
	        android:id="@+id/voice_max"
	        android:layout_height="wrap_content"
	        android:layout_width="wrap_content"
	        android:layout_alignParentRight="true"
	        android:layout_centerVertical="true"
	        android:background="@drawable/voice_max"/>

 

后来我尝试作了修改,如下

 

 <ImageView 
	        android:id="@+id/voice_min"
	        android:layout_width="wrap_content"
	        android:layout_height="wrap_content"
	        android:layout_alignParentLeft="true"
	        android:layout_centerVertical="true"
	        android:background="@drawable/voice_min"/>
	    <ImageView 
	        android:id="@+id/voice_max"
	        android:layout_height="wrap_content"
	        android:layout_width="wrap_content"
	        android:layout_alignParentRight="true"
			android:layout_centerVertical="true"
	        android:background="@drawable/voice_max"/>
	    <SeekBar 
	        android:id="@+id/sb_voice"
	        android:layout_height="wrap_content"
	        android:layout_width="fill_parent"
	        android:layout_centerVertical="true"
	        android:layout_toLeftOf="@id/voice_max"
	        android:layout_toRightOf="@id/voice_min"
	        android:paddingLeft="5dp"
	        android:paddingRight="5dp"
	        android:background="@drawable/voice_seekbar_bg"
	        />

错误就消失了,原来toLeftOf和toRightOf的参数需要在使用它们之前定义,

刚开始只想着从左到右的顺序挨个写,显得有条理,看来我想多了.

错误就消失了,

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/121449.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • Mac idea2022.01激活码【2021最新】

    (Mac idea2022.01激活码)本文适用于JetBrains家族所有ide,包括IntelliJidea,phpstorm,webstorm,pycharm,datagrip等。IntelliJ2021最新激活注册码,破解教程可免费永久激活,亲测有效,下面是详细链接哦~https://javaforall.cn/100143.html…

  • php判断当前访问的是在国内还是在国外_怎么判断非法ip地址

    php判断当前访问的是在国内还是在国外_怎么判断非法ip地址方案一使用淘宝接口/***使用淘宝接口判断ip*@param$ip*@returnbool*/publicfunctionjudgeIpByTaobao($ip){$url=”http://ip.taobao.com/service/getIpInfo.php?ip=”.$ip;$res=f

  • JavaScript CSS Style属性对照表「建议收藏」

    JavaScript CSS Style属性对照表「建议收藏」为了达到某种特殊的效果我们需要用Javascript动态的去更改某一个标签的Css属性。比如:鼠标经过一个图片时我们让图片加一个边框,代码可能是这样:&lt;script type=”text/javascript”&gt;functionimageOver(e) {e.style.border=”1px solid red”;}functionimageOut(e) {e.sty…

  • linux下的C语言开发

    在很多人的眼里,C语言和linux常常是分不开的。这其中的原因很多,其中最重要的一部分我认为是linux本身就是C语言的杰出作品。当然,linux操作系统本身对C语言的支持也是相当到位的。作为一个真正

    2021年12月27日
  • typescript web_typescript在线运行

    typescript web_typescript在线运行前言上一篇我们讲到如何手动编译TypeScript,如果我们每次都要手动编译,那么这样会很累,接下来就介绍自动编译TypeScript。mac自动编译typescript在Typescript文

  • Java过滤器CharacterEncodingFilter位置问题。[通俗易懂]

    Java过滤器CharacterEncodingFilter位置问题。[通俗易懂]转:https://segmentfault.com/a/1190000006184156前人就有的经验在开发javaweb应用的时候经常会遇到令人头痛的字符编码问题,期中一个就是客户端发送过来的请求的编码在请求头里并没有,开发人员需要在后端自己选择合适的encoding来解析request过来的参数。这个问题的解决办法很简单,就是写一个filter来过滤所有请求,然后设置一下req…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号