Android----xml檔案中的控制項的id設定

來源:互聯網
上載者:User

標籤:android   標籤   include   

    Android開放中要想得到布局檔案中控制項的引用,該控制項必須設定id屬性,這兩有兩種方式設定id:(1)@+id/xxxx;(2)@id/xxxx;下面做個簡單的介紹。

  1. @+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設定

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.