我在同一个Activity中有3个不同的片段,Activity包含一个带有设置按钮的工具栏。当我按下设置按钮时,设置片段应该打开。我如何使用导航来实现这一点?我应该从每个片段创建一个动作到设置片段,还是有一个简单的方法?(考虑到设置按钮在活动布局中)。我还创建了一个图表,以便更好地理解。如果你有任何问题请告诉我。谢谢
Activity中导航图的设置方式如下:
private fun setDefaultNavGraph(bundle: Bundle?){
fragmentContainer = my_nav_host_fragment as NavHostFragment
val inflater = fragmentContainer.findNavController().navInflater
val graph = inflater.inflate(R.navigation.prb_navigation)
fragmentContainer.findNavController().setGraph(graph, bundle)
}
这是我的activity xml文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="com.eschbachit.citylinemobile.activities.PrbModuleActivity">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="@dimen/toolbar_height"
android:background="@color/toolbarDarkGrey"
app:theme="@style/ToolbarColoredWhiteIcon"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
app:contentInsetRight="0dp"
app:contentInsetEnd="0dp">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/back_btn"
android:layout_width="24dp"
android:layout_height="match_parent"
android:paddingTop="16dp"
android:paddingBottom="16dp"
android:layout_marginStart="4dp"
app:srcCompat="@drawable/back_button_icon"
android:tint="@color/white"
android:visibility="gone"
android:contentDescription="@null"/>
<TextView
android:id="@+id/prb_activity_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxLines="1"
android:ellipsize="end"
android:text="@string/title_activity_main"
android:textSize="@dimen/font_size_default"
android:lineSpacingExtra="4sp"
android:textStyle="bold"
android:textColor="@color/white"
android:layout_gravity="center"/>
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/settings_nav_tv"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:textColor="@color/white"
app:srcCompat="@drawable/ic_settings"
android:layout_gravity="end"
android:textSize="@dimen/font_size_default"
android:paddingTop="12dp"
android:paddingBottom="12dp"
android:gravity="center" />
</androidx.appcompat.widget.Toolbar>
<fragment
android:id="@+id/my_nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
android:layout_below="@+id/toolbar"/>
</RelativeLayout>
3条答案
按热度按时间aiazj4mn1#
希望你所有的片段都在一个活动上,你可以用以下方法来做:
1.添加操作(如您所述)
Navigation.findNavController(...).navigate(destination.id);
1.如果片段A、B、C的父级是Settings Fragment,则也可以popBackStack。
.findNavController(...).popBackStack();
3vpjnl9f2#
解决方案:
我正在寻找的东西是一个通用的行动在我的导航图。我找到了解决方案here。
我将此操作添加到导航文件中,并在setOnClickList方法中的Activity中使用它。
5jdjgkvh3#
创建两个图,一个
main_graph
,另一个fragments_graph
。将settingFragment
添加到main_graph
,并将fragments_graph
添加到main_graph
,如下所示:现在写一个方法,它的动作如下,这将做你想要的:(将其放入父活动)