我正在使用ExpandableListActivity,并且有一个列表以我想要的方式工作。我的问题是我似乎无法添加BottomNavigationView。该列表采用完整的可用高度。 Android studio在设计视图中正确显示了导航栏,但运行时未显示。
我尝试使用
添加高度getExpandableListView().getLayoutParams().height = 1500;
这为导航栏留出了空间,但没有显示。我使用了各种布局,但似乎没有任何效果。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
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"
tools:context=".LeagueActivity">
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<android.support.design.widget.BottomNavigationView
android:id="@+id/navigation"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="0dp"
android:layout_marginEnd="0dp"
android:background="?android:attr/windowBackground"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:menu="@menu/navigation_main" />
</android.support.constraint.ConstraintLayout>
我希望导航栏以设计标签在Android Studio中显示的方式显示。