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新手请不要问题出在哪里以及如何解决

4

2 回答 2

1

您可以为此目的使用框架布局...

<FrameLayout android:layout_width="wrap_content" 
             android:layout_height="wrap_content">
   <ImageView  android:src="@drawable/yourimage1"/>
   <ImageView  android:src="@drawable/yourimage2" 
               android:layout_gravity="bottom|right" />
</FrameLayout>

不要忘记根据您的方便设置高度和宽度,您也可以填充它们......

于 2013-03-30T08:47:41.213 回答
0

尝试使用 Framelayout insted of RelativeLayout 使用相同的 xml 文件......

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
于 2013-03-30T08:30:04.667 回答