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

在您的情况下,您有数据参考。

于 2012-10-19T17:03:17.703 回答
0

是的,有可能。存在一个在 android 中调用的标签,您可以在其他 android xml 文件中“包含”另一个 android xml 布局。我用你的 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 回答