我有以下 XML 布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|center_vertical">
<ImageView
android:id="@+id/IVLEFT"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:background="#ff0000"
android:padding="1dp"
/>
<ImageView
android:id="@+id/IVRIGHT"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_toRightOf="@+id/IVLEFT"
android:layout_alignParentRight="true"
android:layout_alignBottom="@+id/IVLEFT"
android:layout_alignTop="@+id/IVLEFT"
android:src="@drawable/shadow_pages"
android:background="#00ff00"
android:padding="1dp" />
</RelativeLayout>
我希望我的布局有 2 个 ImageViews - 一个在左边,一个在右边。但实际发生的是:
在运行时,我将 IVLEFT 的图像设置为一个大图像(比如 1024X768)——它覆盖了我的所有布局,放弃了 IVRIGHT(我什至看不到它)
有任何想法吗?