在android上方的另一个图像上显示两个图像

时间:2013-03-30 10:03:47

标签: android android-layout

我为我正在使用的每个网格都有一个自定义网格视图

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<View
    android:layout_width="fill_parent"
    android:layout_height="30sp"
    android:layout_marginTop="85sp"
    android:background="@drawable/shelf" />

<ImageView
    android:id="@+id/imgThumb"
    android:layout_width="47.5sp"
    android:layout_height="76sp"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="29sp"
    android:background="@drawable/pic1" />

<ImageView
    android:id="@+id/bookCover"
    android:layout_width="60sp"
    android:layout_height="80sp"
    android:layout_marginLeft="127sp"
    android:layout_marginTop="26sp"
    android:background="@drawable/book_cover" />

在eclipse中的图形布局之前看起来像这样 enter image description here

但是当我在模拟器上运行它时,它看起来像 enter image description here

书籍封面图片不见了我是android新手请不要问题在哪里以及如何解决

** FrameLayout也无效**

2 个答案:

答案 0 :(得分:0)

尝试更改为:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/shelf" >

<ImageView
    android:id="@+id/imgThumb"
    android:layout_width="47.5sp"
    android:layout_height="76sp"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="29sp"
    android:background="@drawable/pic1" />

<ImageView
    android:id="@+id/bookCover"
    android:layout_below="@id/imgThumb"
    android:layout_width="60sp"
    android:layout_height="80sp"
    android:layout_marginLeft="127sp"
    android:layout_marginTop="26sp"
    android:background="@drawable/book_cover" />

所以你的背景将会显示出来。并且方向不会出现在RelativeLayout中。

答案 1 :(得分:0)

使用以下代码

            <RelativeLayout
            android:id="@+id/dummy"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            >

            <ImageView
                android:id="@+id/pitch"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:background="@drawable/pic1"
                android:scaleType="fitXY" />

            <ImageView
                android:id="@+id/image1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="80sp"
                android:layout_marginTop="50sp"
                android:background="@drawable/book_cover" />
        </RelativeLayout>