Android----xml文件中的控件的id設置

    Android開放中要想獲得佈局文件中控件的引用,該控件必須設置id屬性,這兩有兩種方式設置id:(1)@+id/xxxx;(2)@id/xxxx;下面作個簡單的介紹。java

  1. @+id/xxx:若是R文件中沒有該id則建立;android

注意:一個xml文件中不能出現兩個以該形式設置同一id的兩個控件(include標籤例外);ide

示例1 正確的使用:佈局

<TextView
    android:id="@+id/mytv"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="hello world"/>

示例2 錯誤(兩個id相同):此時系統會提醒報錯
xml

<TextView
    android:id="@+id/mytv"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="hello world"/>
<TextView
    android:id="@+id/mytv"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="hello world"/>

示例3 容許如下用法,可是該id指向的是include標籤,以後的linearLayout設置id的操做無心義:ci

<include
    android:id="@+id/include1"
    layout="@layout/my"
    android:layout_width="50dp"
    android:layout_height="50dp"/>
<LinearLayout
    android:id="@+id/include1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"/>

若是將include標籤與LinearLayout交換位置則會報錯。it

示例 4 容許如下用法,可是該id指向TextView,以後的include標籤和LinearLayout設置id無心義:io

<TextView
    android:id="@+id/mytv"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="hello world"/>
<include
    android:id="@id/mytv"
    layout="@layout/my"
    android:layout_width="50dp"
    android:layout_height="50dp"/>
<LinearLayout
    android:id="@id/mytv"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"/>

若是將TextView的位置下移,運行會出錯。若是include中引用的佈局存在與TextView相同的id設置,不會報錯可是無心義。class

2.@id/xxxx:引用ids.xml中相應的id,與@+id/xxx不一樣,一旦向ids.xml文件中添加一個id在R.java文件中會生成一個相應的id,不管是否有控件使用該id。引用

使用示例:

(1)建立ids.xml

<resources>
    <item name="hello" type="id" />
    <item name="hello2" type="id" />
    <item name="hello3" type="id" />
    <item name="hello4" type="id" />
    <item name="hello5" type="id" />
    <item name="hello6" type="id" />
    <item name="hello7" type="id" />
    <item name="hello8" type="id" />
</resources>

(2)使用id

<TextView
    android:id="@id/hello"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="hello 1" />

<TextView
    android:id="@id/hello"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="hello 2" />

<TextView
    android:id="@id/hello"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="hello 3" />

多個控件能夠以一樣的方式設置統一id,可是該id只屬於最早使用該id的控件。

相關文章
相關標籤/搜索