在我的布局xml文件中,我包括了其他布局xml文件(每个文件都有不同的android id)。
<include layout="@layout/view_contact_name" android:id="+id/test1"/>
<include layout="@layout/view_contact_name" android:id="+id/test2"/>
但是,当我在模拟器中运行它并启动Hierarchy Viewer时,每个布局仍然显示“ NO_ID”,并且在我的代码中,我拥有
findViewById(R.id.test1)
并且findViewById(R.id.test2)
都返回null。
谁能帮我解决我的问题?
@
符号。