gpt4 book ai didi

android导航组件向上按钮,箭头显示但popTo不起作用

转载 作者:搜寻专家 更新时间:2023-11-01 07:41:50 27 4
gpt4 key购买 nike

我使用的 Jetpack 导航组件具有非常简单的设置、一个 Activity (MainActivity) 和 4 个 fragment

主要 fragment ,

卡片预览 fragment ,

创建卡片 fragment ,

和AddPredictionChipsFragment,

NavigationUI 组件使用我的工具栏设置我的导航 Controller ,我为每个目的地设置了操作,还为每个目的地设置了 popTo。我可以成功导航到这些 fragment 中的每一个并且工具栏标题正确更改并且主页图标正确显示后退箭头但是按下箭头以使用 popTo 操作什么都不做(旁注如果我设置弹出进入和退出动画并使用后退按钮返回使用动画)。欢迎任何想法,下面是为简洁起见编辑的相关代码

主要 Activity

public class MainActivity extends AppCompatActivity

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.content_main);
setNavigation();
}

private void setNavigation() {
navController = Navigation.findNavController(this, R.id.main_fragment);
NavigationUI.setupActionBarWithNavController(this, navController);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
return super.onCreateOptionsMenu(menu);
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
Intent i;
switch (item.getItemId()){
case R.id.preferences :
//code
return true;
case R.id.share :
//code
case R.id.create :
//code
case R.id.about :
//code
return true;
}
return super.onOptionsItemSelected(item);
}

我的主要 Activity 确实使用了操作栏,显示了一个搜索栏和一些菜单项,我不知道这是否会以某种方式影响它(已尝试将它们删除但没有改变)

content main 包含一个导航主机 fragment

<fragment
android:id="@+id/main_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="androidx.navigation.fragment.NavHostFragment"
app:defaultNavHost="true"
app:navGraph="@navigation/nav_main"/>

Fragments 使用 androidx:EditFragment extends Fragment 并且不使用菜单选项或任何类似的东西它们都是标准的 fragments,这是我的导航图

  <?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_main"
app:startDestination="@id/mainFragment">
<fragment
android:id="@+id/mainFragment"
android:name="com.sealstudios.simpleaac.ui.MainFragment"
android:label="Simple AAC"
tools:layout="@layout/fragment_main">
<action
android:id="@+id/action_mainFragment_to_cardPreviewFragment"
app:destination="@id/cardPreviewFragment"
app:popUpTo="@+id/mainFragment"
app:popUpToInclusive="false"/>
<action
android:id="@+id/action_mainFragment_to_createCardFragment"
app:destination="@id/createCardFragment"
app:popUpTo="@+id/mainFragment"
app:popUpToInclusive="false"/>
</fragment>
<fragment
android:id="@+id/cardPreviewFragment"
android:name="com.sealstudios.simpleaac.ui.CardPreviewFragment"
android:label="Preview Card"
tools:layout="@layout/preview_card_fragment">
<action
android:id="@+id/action_cardPreviewFragment_to_createCardFragment"
app:destination="@id/createCardFragment"
app:popUpTo="@+id/mainFragment"
app:popUpToInclusive="false"/>
</fragment>
<fragment
android:id="@+id/addPredictionChipsFragment"
android:name="com.sealstudios.simpleaac.ui.AddPredictionChipsFragment"
android:label="Add Predictions"
tools:layout="@layout/add_prediction_chips_fragment_layout"/>
<fragment
android:id="@+id/createCardFragment"
android:name="com.sealstudios.simpleaac.ui.CreateCardFragment"
android:label="Create / Edit"
tools:layout="@layout/fragment_create_card">
<action
android:id="@+id/action_createCardFragment_to_addPredictionChipsFragment"
app:destination="@id/addPredictionChipsFragment"
app:popUpTo="@+id/createCardFragment"
app:popUpToInclusive="false"/>
</fragment>
</navigation>

这里是我调用其中一个 Action 的例子,

  Navigation.findNavController(requireActivity(),R.id.main_fragment)
.navigate(R.id.action_mainFragment_to_cardPreviewFragment);

此操作导航到正确的位置,从标签中获取正确的标题,但不允许我使用箭头向后/向上导航,完整项目是 here

更新这是可重现的

我可以创建一个新项目,添加导航组件和 2 个 fragment ,添加导航图,并将导航主机添加到主要内容,我最终会得到相同的行为(出现箭头但不会弹出任何内容,包括图表本身)我' m 使用“androidx.navigation:navigation-fragment:2.1.0-alpha03”和“androidx.navigation:navigation-ui:2.1.0-alpha03”,我制作了一个示例项目 here并在问题跟踪器中提出了一个错误

更新 google 已经回复我并说这是预期的行为,尽管我很确定他被误解了并且绝对没有运行我发送的示例

最佳答案

使用 setupActionBarWithNavController() 时,您需要重写 onSupportNavigateUp() 以根据 the documentation 触发操作栏中的向上图标:

@Override
public boolean onSupportNavigateUp() {
return Navigation.findNavController(this, R.id.main_fragment).navigateUp()
|| super.onSupportNavigateUp();
}

关于android导航组件向上按钮,箭头显示但popTo不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56193771/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com