我必須爲每一個網格的自定義網格視圖我使用顯示兩個圖像一個在另一個之上的Android
<?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的新請不要哪裏出了問題,該如何解決呢
圖形佈局還沒有那麼成熟。你可以讓我們知道你想要達到什麼目的。 – Avinazz
參考這個... http://stackoverflow.com/questions/10953368/android-display-image-over-an-image-in-imageview –