例
兩星。一個相對於父(相對於左上角),另一個相對於第一個星(相對於第一個星相對於左上角) - 請參閱layout_below
和layout_toRightOf
)。
來源
<?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>
請提供完整的XML佈局資源和名稱是什麼 「你能想到的一切」 包括。 – Rayne
我把我能想到的所有東西放在imageView中。也許我只是做錯了什麼,你從相對佈局控制imageview?最簡單的方法是將圖片對齊到屏幕頂端。 –
是您的整個XML文件嗎?它是畸形的;想知道Android不抱怨。 – Rayne