0

次のように、main.xmlに画像があります

   <ListView
        android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"/>
    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="70dp"
        android:layout_height="70dp"
        android:contentDescription="@string/hello"
        android:maxHeight="70dp"
        android:maxWidth="70dp" />

しかし、それを別のxmlファイルに渡す必要があります。これは可能ですか?

4

2 に答える 2

0

はい、可能です。他のandroidxmlファイルに別のandroidxmlレイアウトを「含める」ことができるandroidで呼び出されるタグが存在します。main.xmlを使用して例を示します

layout2.xmlで...。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:orientation="vertical" >

    <include layout="@layout/main"/>

</LinearLayout>

このタグの詳細については、以下のリンクで確認してください。

http://developer.android.com/training/improving-layouts/reusing-layouts.html

于 2012-10-19T17:07:38.197 に答える