今天上午写程序时发现我在MainActivity.xml和other.xml各写了一句
<TextView
android:id = "@+id/myTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
当时我打开R.java发现只自动生成了一个myTextView
public static final class id {
public static final int action_settings=0x7f080002;
public static final int myButton=0x7f080001;
public static final int myTextView=0x7f080000;
}
这说明这两个控件的ID是相同的。但是如何区分他们?
网上搜了一下觉得这个答案应该合理:
“相同文件下如果控件id相同是不允许的,eclipse会报错的,如果不是同在一个布局文件中的话就可以,findviewbyid ()找的那个id是你前面用setContentView(R.layout.*)中的xml文件中的id”------引自于百度知道。
原文链接:https://www.f2er.com/xml/300552.html