首先,ID是Android中布局文件中的控件引用的一个“标签”,它是在.xml文件中人为手动创建,如果想要引用布局文件中的控件,必须得为其设置ID属性,设置ID属性的方式有id=”@+id/xx”和id=”@id/xx”,今天先说带有“+”号的这种。
id=”@+id/xx”,存在于.xml布局文件中,是为该控件生成一个ID,其名"xx",在后面引用该控件时以“R.id.xx”的形式引用。
@+id的意思在R文件中生成int xx=value,有两种情况 ①R文件中不存在xx变量,则生成int xx=value即为控件新建一个id值 ②若R文件中已存在xxx变量,则不再新建,直接引用该变量对应的id值
例如:Button组件,android:id="@+id/next_button",是为该Button设置一个名为next_button的id;
<Button
android:id="@+id/next_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawablePadding="4dp"
android:drawableRight="@drawable/button_right"
android:text="@string/next_button" />
在R.java中我们可以看到,android studio已经为我们建立好了Next_button的地址,只需按一定的格式(R.id.xx)引用即可。
引用示例:
mNextButton = (Button) findViewById(R.id.next_button);