我的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文件。这可能吗?
答案 0 :(得分:0)
在您的情况下,您有数据参考。
答案 1 :(得分: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