我想在各自的图像视图中放置两个图像,以便它们占据整个屏幕。到目前为止,我只到了这里:((要添加正在测试的设备,我使用 S3)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/white"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:onClick="onClick"
android:src="@drawable/up" />
<ImageView
android:id="@+id/blue"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:src="@drawable/blue"
android:onClick="onClick"
android:layout_below="@id/white"/>
</RelativeLayout>
图像为 1080 X 1920 并缩放至屏幕。问题是下面的图像缩放不正确或者它们没有正确连接。我在顶部和底部有一个黑色区域
抱歉,图片大小不一样。