Мой макет был идеальным, пока я не решил добавить скроллвью.
<?xml version="1.0" encoding="utf-8"?>
<TableLayout android:id="@+id/tableLayout1" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android">
<ScrollView android:id="@+id/scrollView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:id="@+id/linearLayout1">
<TableLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/tableLayout1"/>
</LinearLayout>
</ScrollView>
<Button android:layout_width="match_parent" android:id="@+id/button1" android:text="Start" android:layout_height="50dip" android:onClick="getOutput"></Button>
</TableLayout>
Я бы хотел, чтобы кнопка оставалась внизу экрана, я бы хотел, чтобы прокрутка занимала весь экран. Только с внутренней раскладкой стола все работает отлично. В предварительном просмотре графического макета это выглядит так, как я хочу, но не при запуске.
Я бы хотел, чтобы представление прокрутки занимало весь экран, кроме кнопки, которую я бы хотел видеть внизу.