Having searched for a solution first (for example here) I came upon the following solution:
android:layout_centerHorizontal="true"
which does not work for me (see third button). Below is the full example code of three buttons in a RelativeLayout
, in which the middle button should be centered (horizontally and vertically, which the button is), and the two other buttons are supposed to be symmetrical placed on the screen, horizontally centered. However, they are not, using the suggested solution I found many times.
So what do I miss?
Full code:
<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>