2012-10-01 56 views
-1

我正試圖控制圖像在相對視圖內的活動位置。 但無論我做什麼。圖片總是出現在屏幕中間。 爲什麼相對佈局位置在中間屏幕上的所有圖片

<ImageView 
     android:id="@+id/imageView1" 
     android:layout_width="wrap_content" 
     android:layout_height="100dp" 
     android:layout_marginTop="1dp" 

     android:src="@drawable/hp" /> 

</RelativeLayout> 

即使我嘗試對齊和一切我能想到的。

+0

請提供完整的XML佈局資源和名稱是什麼 「你能想到的一切」 包括。 – Rayne

+0

我把我能想到的所有東西放在imageView中。也許我只是做錯了什麼,你從相對佈局控制imageview?最簡單的方法是將圖片對齊到屏幕頂端。 –

+0

是您的整個XML文件嗎?它是畸形的;想知道Android不抱怨。 – Rayne

回答

0

兩星。一個相對於父(相對於左上角),另一個相對於第一個星(相對於第一個星相對於左上角) - 請參閱layout_belowlayout_toRightOf)。

Example rendered

來源

<?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" > 

    <ImageView 
     android:id="@+id/imageView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentTop="true" 
     android:src="@android:drawable/btn_star" /> 

    <ImageView 
     android:id="@+id/imageView2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_below="@+id/imageView1" 
     android:layout_toRightOf="@+id/imageView1" 
     android:src="@android:drawable/btn_star_big_on" /> 

</RelativeLayout> 
相關問題