У меня есть этот макет,
<TableLayout android:stretchColumns="0"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableRow>
<AutoCompleteTextView
android:id="@+id/StationTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:completionThreshold="2"
android:inputType="textAutoComplete"
android:imeOptions="flagNoExtractUi|actionSearch" />
<Button android:id="@+id/ShowTimesButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/ic_btn_search" />
</TableRow>
</TableLayout>
с самого начала все так, как я хочу, например textview занимает все пространство, которое не занимает кнопка. Но если текстовое представление заполняется длинной строкой, оно отталкивает кнопку от экрана, я хочу, чтобы макет был ограничен на экране и никогда не отталкивал его от экрана. Как я могу это сделать?