標籤:android 標籤 include
Android開放中要想得到布局檔案中控制項的引用,該控制項必須設定id屬性,這兩有兩種方式設定id:(1)@+id/xxxx;(2)@id/xxxx;下面做個簡單的介紹。
@+id/xxx:如果R檔案中沒有該id則建立;
注意:一個xml檔案中不能出現兩個以該形式設定同一id的兩個控制項(include標籤例外);
樣本1 正確的使用:
<TextView android:id="@+id/mytv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="hello world"/>
樣本2 錯誤(兩個id相同):此時系統會提醒報錯
<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的操作無意義:
<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交換位置則會報錯。
樣本 4 允許以下用法,但是該id指向TextView,之後的include標籤和LinearLayout設定id無意義:
<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設定,不會報錯但是無意義。
[email protected]/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的控制項。
本文出自 “wauoen” 部落格,請務必保留此出處http://7183397.blog.51cto.com/7173397/1847317
Android----xml檔案中的控制項的id設定