前提・実現したいこと
BottomNavigationView と Navigation を併用したいです。なぜかエラーが出力され、原因も不明であるため、どこがまちがっているか教えていただきたいです。
発生している問題・エラーメッセージ
Unable to start activity ComponentInfo{com.example.hoge/com.example.hoge.ui.MainActivity}: android.view.InflateException: Binary XML file line #12: Binary XML file line #12: Error inflating class fragment
具体的な原因が不明であるため、解決できません。
該当のソースコード
MainActivity.kt
kotlin
1class MainActivity : AppCompatActivity() { 2 3 private val binding by lazy { ActivityMainBinding.inflate(layoutInflater) } 4 5 override fun onCreate(savedInstanceState: Bundle?) { 6 super.onCreate(savedInstanceState) 7 setContentView(R.layout.activity_main) 8 9 binding.run{ 10 navigation.setupWithNavController( 11 Navigation.findNavController( 12 this@MainActivity, 13 R.id.nav_fragment 14 ) 15 ) 16 } 17 } 18}
MainActivity.ktのレイアウト
kotlin
1<?xml version="1.0" encoding="utf-8"?> 2<layout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools"> 5 6 <androidx.constraintlayout.widget.ConstraintLayout 7 android:id="@+id/container" 8 android:layout_width="match_parent" 9 android:layout_height="match_parent" 10 tools:context=".presentation.screen.home.MainActivity"> 11 12 <fragment 13 android:id="@+id/nav_fragment" 14 android:layout_width="match_parent" 15 android:layout_height="wrap_content" 16 android:name="androidx.navigation.fragment.NavHostFragment" 17 app:navGraph="@navigation/navigation_graph" 18 app:defaultNavHost="true" 19 app:layout_constraintStart_toStartOf="parent" 20 app:layout_constraintEnd_toEndOf="parent" 21 app:layout_constraintTop_toTopOf="parent" 22 app:layout_constraintBottom_toBottomOf="@id/navigation"/> 23 24 <com.google.android.material.bottomnavigation.BottomNavigationView 25 android:id="@+id/navigation" 26 android:layout_width="match_parent" 27 android:layout_height="wrap_content" 28 android:background="?android:attr/windowBackground" 29 app:layout_constraintBottom_toBottomOf="parent" 30 app:layout_constraintLeft_toLeftOf="parent" 31 app:layout_constraintRight_toRightOf="parent" 32 app:itemTextColor="@color/black" 33 app:itemIconTint="@color/white" 34 app:menu="@menu/bottom_menu"/> 35 36 </androidx.constraintlayout.widget.ConstraintLayout> 37</layout>
menuフォルダに入っているファイル(bottom_menu.xml)
<?xml version="1.0" encoding="utf-8"?> <menu xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@+id/fugaFragment" android:icon="@drawable/ic_huga" android:title="fuga" /> <item android:id="@+id/hogeFragment" android:icon="@drawable/ic_hoge" android:title="hoge" /> </menu>
navigationフォルダに入っているnavigation_gragh.xml
<navigation 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:id="@+id/bottom_navigation_view" app:startDestination="@id/fugaFragment"> <fragment android:id="@+id/fugaFragment" android:name="com.example.hoge.ui.FugaFragment" android:label="FugaFragment" /> <fragment android:id="@+id/hogeFragment" android:name="com.example.hoge.ui.HogeFragment" android:label="HogeFragment"/> </navigation>
2つのFragment
kotlin
1class XxxFragment : Fragment() { 2 override fun onCreateView( 3 inflater: LayoutInflater, container: ViewGroup?, 4 savedInstanceState: Bundle? 5 ): View? { 6 return inflater.inflate(R.layout.fragment_xxx, container, false) 7 } 8}
Fragmentのレイアウト
<?xml version="1.0" encoding="utf-8"?> <layout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto"> <data> </data> <androidx.constraintlayout.widget.ConstraintLayout android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".ui.XxxFragment"> <TextView android:id="@+id/xxx" android:layout_width="wrap_content" android:layout_height="wrap_content" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintBottom_toBottomOf="parent" android:text="xxx" /> </androidx.constraintlayout.widget.ConstraintLayout> </layout>
実装するうえで読んだ記事、エラーを解決するために読んだ記事
回答1件
あなたの回答
tips
プレビュー