我使用此代碼來製作此佈局。爲什麼在這個佈局中有一些空間?
<?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:layout_margin="20dp"
android:background="@android:color/transparent">
<LinearLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_centerInParent="true"
android:background="@drawable/rounded_white_bg">
<EditText
android:id="@+id/login"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:background="@drawable/dialog_edittex"
android:layout_margin="10dp"/>
<EditText
android:id="@+id/password"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_margin="10dp"
android:background="@drawable/dialog_edittex"/>
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:textColor="@android:color/black"
android:text="AAAAAAAAAAAA"
android:layout_gravity="center"
android:textSize="20sp"
/>
<ImageView
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:src="@drawable/dialog_button_bg"/>
</LinearLayout>
</RelativeLayout>
rouded_whiite.bg.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffff" />
<corners
android:radius="20dp"/>
</shape>
但我做到這一點時,我有看到這樣的結果。正如你所看到的,紅色按鈕下方有一些餘量。我沒有設置任何保證金或其他東西,但在那裏有一些空間。我應該在這裏做什麼來獲得像第一拳那樣精確的結果。
android:layout_margin =「20dp」? –
你有沒有試過在你的'LinearLayout'和'RelativeLayout'中設置android:padding =「0dp」? – Fllo
如果你只能使用RelativeLayout來實現它,你爲什麼要使用嵌套的線性佈局? – r4jiv007