Android - 对活动和片段使用导航 - 二进制 XML 文件错误
Android - Use of navigation with activities and fragments - Binary XML file Error
我有一个由一个 activity 和几个片段组成的应用程序,正如 Google 所推荐的那样。
- MainActivity
- LobbyFragment
- GameFragment
- ...
我也想用导航地图
我在Activity放了个菜单到处都有,然后我想切换页面的内容。
如 fragment tutorial 所示,我制作了 activitymain.xml
以稍后在片段之间切换 FragmentContainerView
的内容。
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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=".MainActivity">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:theme="@style/Theme.application.AppBarOverlay">
</com.google.android.material.appbar.AppBarLayout>
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fragment_container_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.my.application.LobbyFragment" /> <!--Here is failure-->
</androidx.coordinatorlayout.widget.CoordinatorLayout>
但是,此时,当我编译时,我有:
Unable to start activity ComponentInfo{com.my.application/com.my.application.MainActivity}: android.view.InflateException: Binary XML file line #21: Binary XML file line #21: Error inflating class androidx.fragment.app.FragmentContainerView
以及将 Activity 放在导航地图的什么位置?
用documentation link you referenced uses the traditional fragment transaction by directly accessing supportFragmentManager
; but it turns out from your post that you use Navigation Architecture components代替。
在导航组件中,您不应该在 android:name
属性 中使用特定片段 class,而是 navController
使用 NavHostFragment
要解决这个问题,请更换
android:name="com.my.application.LobbyFragment"
有
android:name="androidx.navigation.fragment.NavHostFragment"
此外,您需要在具有 app:navGraph
属性的导航图表中引用名称;假设它被命名为 nav_graph
:
app:navGraph="@navigation/nav_graph"
我有一个由一个 activity 和几个片段组成的应用程序,正如 Google 所推荐的那样。
- MainActivity
- LobbyFragment
- GameFragment
- ...
我也想用导航地图
我在Activity放了个菜单到处都有,然后我想切换页面的内容。
如 fragment tutorial 所示,我制作了 activitymain.xml
以稍后在片段之间切换 FragmentContainerView
的内容。
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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=".MainActivity">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:theme="@style/Theme.application.AppBarOverlay">
</com.google.android.material.appbar.AppBarLayout>
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fragment_container_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.my.application.LobbyFragment" /> <!--Here is failure-->
</androidx.coordinatorlayout.widget.CoordinatorLayout>
但是,此时,当我编译时,我有:
Unable to start activity ComponentInfo{com.my.application/com.my.application.MainActivity}: android.view.InflateException: Binary XML file line #21: Binary XML file line #21: Error inflating class androidx.fragment.app.FragmentContainerView
以及将 Activity 放在导航地图的什么位置?
用documentation link you referenced uses the traditional fragment transaction by directly accessing supportFragmentManager
; but it turns out from your post that you use Navigation Architecture components代替。
在导航组件中,您不应该在 android:name
属性 中使用特定片段 class,而是 navController
使用 NavHostFragment
要解决这个问题,请更换
android:name="com.my.application.LobbyFragment"
有
android:name="androidx.navigation.fragment.NavHostFragment"
此外,您需要在具有 app:navGraph
属性的导航图表中引用名称;假设它被命名为 nav_graph
:
app:navGraph="@navigation/nav_graph"