У меня есть ListView, динамически заполняемый TextViews:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/transport_selection"
/>
</LinearLayout>
Но я хочу добавить кнопки поверх Activity, поэтому я сначала переместил свой ListView в TableLayout:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TableRow android:id="@+id/tableRow2" android:layout_width="fill_parent" android:layout_height="fill_parent">
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/transport_selection"
/>
</TableRow>
</TableLayout>
Но затем текст в TextViews усекается: он проходит по правой стороне экрана.
Я пробовал разные значения для атрибутов android: layout_width, но ничего не изменилось.
Есть идеи?
С уважением,