私はレイアウトを困惑させるアプリを見つけました。ボタンのリソースIDレイアウトXMLにインクルードディレクティブを使用して
は、一方が他方を含むように、2つのレイアウトの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のエントリをチェックして、それは空のようです。