Android导航组件不显示片段
Posted
技术标签:
【中文标题】Android导航组件不显示片段【英文标题】:Android Navigation Component Not Displaying Fragment 【发布时间】:2019-02-03 10:18:45 【问题描述】:我正在尝试在现有应用中实现新的 android 导航组件。 我有 2 个片段,除了它们的名称外,它们是相同的。当我将 startDestination 设置为 fragment2 时,该片段似乎正确显示。当 startDestination 设置为 fragment1 时,我看不到膨胀的视图,但我确实看到了“Fragment 1 created”toast。
我做错了什么?
class Fragment1 : Fragment()
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?): View?
Toast.makeText(context, "Fragment 1 created", Toast.LENGTH_LONG).show()
return inflater.inflate(R.layout.fragment1, container, false)
class Fragment2 : Fragment()
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?): View?
Toast.makeText(context, "Fragment 2 created", Toast.LENGTH_LONG).show()
return inflater.inflate(R.layout.fragment2, container, false)
nav_graph.xml
<?xml version="1.0" encoding="utf-8"?>
<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/nav_graph"
app:startDestination="@id/fragment1">
<fragment
android:id="@+id/fragment1"
android:name="com.package.anotherpackage.ui.Fragment1"
android:label="fragment1"
tools:layout="@layout/fragment1"/>
<fragment
android:id="@+id/fragment2"
android:name="com.package.anotherpackage.ui.Fragment2"
android:label="fragment2"
tools:layout="@layout/fragment2"/>
</navigation>
MainActivity 布局:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
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_
android:layout_
android:background="@android:color/background_light"
tools:context=".MainActivity">
<fragment
android:layout_
android:layout_
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
app:navGraph="@navigation/nav_graph"
app:defaultNavHost="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>
</FrameLayout>
Fragment1 布局:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
tools:context=".ui.Fragment1"
>
<!-- TODO: Update blank fragment layout -->
<TextView
android:layout_
android:layout_
android:text="fragment 1"
/>
</FrameLayout>
依赖关系:
//Navigation
def nav_version = "1.0.0-alpha05"
implementation "android.arch.navigation:navigation-fragment-ktx:$nav_version"
implementation "android.arch.navigation:navigation-ui-ktx:$nav_version"
// optional - Test helpers
androidTestImplementation "android.arch.navigation:navigation-testing-ktx:$nav_version"
【问题讨论】:
如果您将Fragment1
更改为inflate R.layout.fragment2
(仅用于测试),Fragment2 布局是否会出现在 Fragment1 Toast 消息旁边?如果是这样,请包括您的 R.layout.fragment1
布局,这肯定是您的问题的原因
是的,我看到了 fragment2 布局和 Fragment1 toast。我编辑了帖子并添加了 fragment1 布局。感谢您的帮助!
您的评论使我找到了解决方案。我的项目(不同的库)中的另一个布局与我试图在 Fragment1 中膨胀的布局冲突。再次感谢。
【参考方案1】:
我在项目的另一个库中有一个名为“fragment1.xml”的布局。 它一定与我试图在 Fragment1 中膨胀的其他布局相冲突。重命名 Fragment1 布局解决了这个问题。
【讨论】:
以上是关于Android导航组件不显示片段的主要内容,如果未能解决你的问题,请参考以下文章
片段不使用 FragmentContainerView 切换