我创建了一个扩展RelativeLayout的自定义视图,并在xml布局文件中添加了它的完整名称,它的工作正常我只是想问有没有办法让eclipse检测我的父布局作为RelativeLayout以便自动-complete并建议与RelativeLayout相关的标签不给我空白的建议,并说eclipse不知道这个组件的任何直接孩子。
<com.mypackage.myview>
<!-- I want eclipse to detect that myView which is in com.mypackage extends RelativeLayout and show the suggestions such as Layout_align_parent_left-->
<Button ............... />
<TextView..................../>
</com.mypackage.myview>
答案 0 :(得分:2)
这是旧版ADT中的一个错误,现在已修复。
答案 1 :(得分:0)
我不确定这会起作用,但请尝试
<RelativeLayout class="com.mypackage.myview" ...>
<Button .../>
<TextView .../>
</RelativeLayout>