0

我在相对布局中对齐 2 个图像视图时遇到问题:

问题

这 2 个图像需要靠近才能在没有空间的情况下吃其他图像。像这样: 目标

    <?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>

我究竟做错了什么?

更新 dia1 是: 直径1 dia2 是: 直径2

4

2 回答 2

0

从您发布的第一张图片来看,底部图像似乎有很多透明的“填充”(不是实际的填充,只是可见部分和上限之间的透明图像像素)。

在我看来,你应该结合RelativeLayout你的上下图像的裁剪版本。

否则,请考虑检查这个关于重叠图像的 SO 线程。

于 2013-08-15T18:18:51.320 回答
0

你的问题并没有解释太多关于这个问题。因此,您可以添加单个图像。我的意思是合并之前的 2 个图像并将其用作 1。

于 2013-08-15T18:20:08.113 回答