Using the Linear Layout

I am familiar with the relative layout. Since the First Program in the third third edition starts with a linear layout I can not control the position of the NEXT button. My buttons line up and in the example the Next button is below and centered between the TRUE and FALSE buttons. My app runs fine and my code is the same as the example. How do I adjust the position of the NEXT button on the next line below? Thank you for you help. Nick

Hey try this

trying this:

<TextView
    android:id="@+id/question_text_view"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:padding="24dp"
    />

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_vertical|center_horizontal"
    android:orientation="horizontal">

    <Button
        android:id="@+id/true_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/true_button"/>

    <Button
        android:id="@+id/false_button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/false_button"/>


</LinearLayout>


<Button
    android:id="@+id/next_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|center"
    android:text="@string/next_button"
    android:drawableRight="@drawable/arrow_right"
    android:drawablePadding="4dp"
/>

Thank you so much. It works like a champ.
Nick from Ohio