我注意到一個應用程序,它的佈局讓我爲難,來到include指令。資源ID定義使用XML佈局
假設有兩種佈局的XML文件,這樣一個包含其他:
activity_button.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<include layout="@layout/button"/>
</LinearLayout>%
button.xml
<?xml version="1.0" encoding="utf-8"?>
<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/button"
android:onClick="sendMessage">
</Button>
什麼是按鈕的資源ID?
我以爲人們總是必須通過android:id
屬性指定ID,所以我很困惑爲什麼這個佈局有效。我也檢查了R.java
ID條目,它似乎是空的。