Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>EDIT..</p> <p>To correct this you need to add the following to your buttons "android:layout_below="@id/id of your button" see below..</p> <pre><code>&lt;Button android:id="@+id/lieu_depart" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Lieu de prise en charge" style="" /&gt; &lt;Button android:id="@+id/button2_date_depart" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="50dp" android:layout_below="@id/lieu_depart" android:text="Date1" /&gt; &lt;Button android:id="@+id/time_depart5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="70dp" android:layout_below="@id/button2_date_depart" android:text="Time1" /&gt; &lt;Button android:id="@+id/button4" android:layout_width="match_parent" android:layout_height="wrap_content" android:minWidth="@dimen/activity_vertical_margin" android:layout_below="@id/time_depart5" android:text="Lieu de restitution" /&gt; &lt;Button android:id="@+id/button5_date_arrive" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/button4" android:layout_marginLeft="50dp" android:text="Date2" /&gt; &lt;Button android:id="@+id/button6_time_arrive" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/button5_date_arrive" android:layout_marginLeft="70dp" android:text="Time2" /&gt; &lt;Button android:id="@+id/Button03" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@id/button6_time_arrive" android:gravity="center" android:text="Button" /&gt; </code></pre> <p>You can then play around with the gravity of your buttons and the margins and so forth. This should now fix your problem.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload