androidで<br>ラベルの使い方


このコードの役割は、コードの再利用性を高めることです.定義されたレイアウトを別のレイアウトの要素として使用できます.
次に例を示します.
これはmainです.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/hello" />
	<include layout="@layout/include1"/>
	<include layout="@layout/include2"/>
</LinearLayout>

include1.xml
<?xml version="1.0" encoding="utf-8"?> 
<TextView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:text="          !" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"> 
</TextView>

include2.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" android:text="          " >
    

</TextView>

説明:main.xmlには次の2つのレイアウトファイルが含まれています.activity.JAvaには他のコードを追加することなく効果が見られます.