每次我启动应用程序时,它都会崩溃,Logcat 会显示以下内容:
引起原因:java.lang.IllegalArgumentException:ID 未引用此 Activity 内的视图
所以我认为这是说没有找到ID,但这是我的Java文件和XML文件相互对应。爪哇:
NavController navController = Navigation.findNavController(this,R.id.nav_host_fragment);
XML:
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/nav_view"
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/bottom_nav_menu" />
<fragment
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
app:layout_constraintBottom_toTopOf="@id/nav_view"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.285"
app:navGraph="@navigation/mobile_navigation" />
Logcat 说失败,因为 java 文件 ID 没有引用此 Activity 内的视图。但我明明输入了ID:nav_host_fragment。我不知道出了什么问题,当我进入 Android Studio 时,它没有报告任何错误。请帮忙。
jeck猫
慕慕森
HUH函数
翻过高山走不出你
相关分类