Используя LinearLayout, единственное, что вы можете сделать, это иметь следующее:
<TextView
android:id="@+id/test"
android:layout_width="wrap_content"
android:layout_height="0dp" <---
android:layout_gravity="center"
android:layout_marginBottom="25dip"
android:layout_weight="1" <---
android:text="This is a test"
android:textSize="16.5sp" />
<Button
android:id="@+id/continuebutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content" <---
android:layout_gravity="bottom"
android:layout_weight="0" <---
android:text="continue" />
Пожалуйста, проверьте строки с помощью: <--- </p>
Конечно, лучший способ, вероятно, использоватьa RelativeLayout и имеет Button alignParentBottom, как это:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:orientation="vertical" >
<TextView
android:id="@+id/test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="25dip"
android:text="This is a test"
android:textSize="16.5sp" />
<Button
android:id="@+id/continuebutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="continue" android:layout_alignParentBottom="true"/>
</RelativeLayout>
Надеюсь, это поможет !!