我为正在使用的每个网格都有一个自定义网格视图
<?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 也不起作用**