xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bkgrnd">
<ScrollView
android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:isScrollContainer="true"
android:scrollbars="vertical"
android:scrollbarAlwaysDrawVerticalTrack="true">
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Spinner
android:id="@+id/Spinner_Table"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:drawSelectorOnTop="true"></Spinner>
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textSize="@dimen/help_text_size"
android:textStyle="bold"
android:gravity="center"
android:id="@+id/Blank"></TextView>
<TextView
android:id="@+id/admintable"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></TextView>
<Button
android:id="@+id/Logout"
android:text="@string/Logout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></Button>
</LinearLayout>
</ScrollView>
All I want to do is the last button on this activity to be displayed at the bottom of the view. If I move the button outside the scroll view I get an error. What should I do?