我为我正在使用的每个网格都有一个自定义网格视图
<?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新手请不要问题在哪里以及如何解决
答案 0 :(得分: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>
不要忘记根据您的方便设置高度和宽度,您也可以填充它们......
答案 1 :(得分:0)
尝试使用Framelayout而不是RelativeLayout ....使用相同的xml文件。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"