我在RelativeLayout中对齐2个图像视图时遇到问题:
problem http://i39.tinypic.com/6h2c79.png
这两张图片需要靠近其他没有空间的图像。像这样: target http://i42.tinypic.com/9ay2oh.png
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_portrait"
android:orientation="vertical" >
<!-- header -->
<ImageView
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/desc"
android:src="@drawable/header" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<ImageView
android:id="@+id/dia1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:contentDescription="@string/desc"
android:src="@drawable/dia1" />
<ImageView
android:id="@+id/dia2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/dia1"
android:contentDescription="@string/desc"
android:src="@drawable/dia2" />
</RelativeLayout>
我做错了什么?
UPDATE dia1是: dia1 http://i42.tinypic.com/kap5a9.png dia2是: dia2 http://i41.tinypic.com/wr1cia.png
答案 0 :(得分:0)
从你发布的第一张图片来看,底部图像似乎有很多透明的“填充”(不是实际的填充,只是可见部分和上限之间的透明图像像素)。
在我看来,你应该将RelativeLayout
与上下图像的裁剪版本结合起来。
否则,请考虑检查有关重叠图像的this SO线程。
答案 1 :(得分:0)
你的问题没有解释这个问题。所以你可以添加一个图像。我的意思是之前合并2个图像并将其用作1。