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: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 中的图形布局之前看起来像这样 在此处输入图像描述

但是当我在模拟器上运行它时,它看起来像 在此处输入图像描述

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

** FrameLayout 也不起作用**

4

2 回答 2

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>
于 2013-03-30T10:10:38.780 回答
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中。

于 2013-03-30T10:07:26.810 回答