嗨,我想知道如何將框對齊到android屏幕的底部?我已經將該盒子製作成9patch png圖片,並且實際圖片和邊框之間仍存在一些間隙。誰能幫幫我嗎?我的意思是圖形佈局屏幕上控制圖像大小的藍色邊框與實際圖像之間存在實際差距。請原諒我的英語。以圖形佈局對齊圖像
這是藍盒子
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/background"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/background" />
<ImageView
android:id="@+id/topbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:src="@drawable/top_bar" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/topbar"
android:layout_centerHorizontal="true"
android:layout_marginTop="95dp"
android:src="@drawable/icon_green" />
<ImageView
android:id="@+id/box"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="23dp"
android:src="@drawable/box" />
</RelativeLayout>
請添加完整版式xml –
以下是完整的xml。希望你能幫助:) – akemalFirdaus
你可以添加你當前佈局的圖片鏈接。你在最後一個'ImageView'中有'android:layout_marginBottom =「23dp」'。 –