У меня есть некоторые проблемы с редактором макета. Вероятно, это просто моя ошибка, потому что я действительно не понимаю различные макеты.
введите описание изображения здесь
<?xml version="1.0" encoding="utf-8"?>
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary"
android:orientation="vertical"
tools:context=".MainActivity">
<Button
android:id="@+id/btn_history"
android:layout_width="137dp"
android:layout_height="80dp"
android:text="History" />
<TableRow
android:layout_width="match_parent"
android:layout_height="535dp">
<ListView
android:id="@+id/raceList"
android:layout_width="match_parent"
android:layout_height="513dp"
android:layout_margin="10dp"
android:divider="@color/colorPrimary"
android:dividerHeight="10dp">
</ListView>
</TableRow>
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="163dp"
app:itemBackground="@color/colorPrimary"
app:itemIconTint="@android:color/white"
app:itemTextColor="@android:color/white"
app:menu="@menu/bottom_navigation_menu" />
введите описание изображения здесь