我試圖找出一種方法來對齊2個圖像。第一幅圖像是邊界圖像(像寶麗來),第二幅圖像。圖片應在邊界(大約從左側與真實的邊界圖像的頂部20dp)的拐角處開始,但這個距離上,你有什麼不同的屏幕...對齊2個圖像,所以第一個作爲第二個邊框的邊框
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/border" />
</RelativeLayout>
這是我現在得到:
最難的事情是圖像不應該跳出邊界圖像和全景後面的背景(邊框+圖片)是可變的!
也許你可以使用這個問題的答案: http://stackoverflow.com/questions/3263611/border-在圖像中查看在Android – 2012-04-24 09:28:43
不,我需要圖像作爲邊界... – Ferdau 2012-04-24 09:31:35