调布局的时候,需要把一个控件A放在另一个控件B的左边,我的xml布局文件是按照顺序从左到右定义的控件,所以先定义的控件A,然后控件B,在控件A的属性中,定义
android:layout_toLeftOf="@id/shareButton" 结果老是提示我找不到shareButton的id,明明就在后面定义的shareButton,为什么eclipse找不到呢?
后来,原来是你想用的toLeftOf和toRightOf的控件参数需要在使用它们之前定义,
所以先定义控件B,在定义控件A就ok了
layout_toLeftOf = “@id/XX” 提示找不到该id的控件
时间: 2024-10-18 09:13:45