已經尋找一個解決方案第一(例如here)我來到了以下解決方案:如何在RelativeLayout中水平居中按鈕?
android:layout_centerHorizontal="true"
不爲我工作(見第三個按鈕)。下面是RelativeLayout
中三個按鈕的完整示例代碼,其中中間按鈕應居中(按鈕爲水平和垂直),另兩個按鈕應該對稱放置在屏幕上,水平居中。但是,他們不是,使用我多次發現的建議解決方案。
那麼我錯過了什麼?
全碼:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/checkscreen"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.impyiablue.checkpoint.CheckScreen">
<RelativeLayout
android:id="@+id/content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="20dp"
android:layout_weight="1"
android:orientation="vertical">
<Button
android:id="@+id/check_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/check_next"
android:textSize="20sp"
android:padding="25dip"
android:layout_alignParentTop="true"
android:layout_alignLeft="@+id/check_now"
android:layout_alignStart="@+id/check_now"
android:layout_marginTop="50dp" />
<Button
android:id="@+id/check_now"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/check_now"
android:padding="70dip"
android:textSize="20sp" />
<Button
android:id="@+id/check_redo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="@string/check_redo"
android:textSize="20sp"
android:padding="25dip"
android:layout_alignParentBottom="true"
android:layout_alignLeft="@+id/check_now"
android:layout_alignStart="@+id/check_now"
android:layout_marginBottom="50dp" />
</RelativeLayout>
</LinearLayout>
可能'android:layout_alignLeft'與'android:layout_centerHorizontal'發生衝突。如果你想中心水平爲什麼仍然使用佈局對齊? – nhoxbypass