gpt4 book ai didi

android - 如何使用 Jetpack 导航在 fragment 中使用工具栏而不是在 Activity 中使用工具栏

转载 作者:行者123 更新时间:2023-12-02 13:12:23 25 4
gpt4 key购买 nike

我已经开始使用 Android Jetpack 的导航库。到目前为止,我发现它非常容易使用。我面临的问题是工具栏。

我想要实现的是:

  1. 用户打开应用程序并显示登录页面。这是导航的开始,不应显示工具栏。
  2. 如果用户第一次登录,将显示一个用于重置密码的 fragment (由管理员自动生成),以便用户更改它。在这里,我想显示一个带有后退箭头的白色工具栏(并且没有文本)
  3. 如果用户之前登录过,我们会显示一个加载屏幕(也没有工具栏)

我尝试了很多方法,但都没有成功。前两次尝试使用 NoActionBar 样式的 Activity 。

重置密码 fragment 中的工具栏

  • 带有工具栏的自定义应用栏。它正在显示,但未显示后退箭头。我尝试在工具栏中添加 Imageview,还尝试从 java 设置图标,但这些都不起作用。
<?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"
android:background="@color/white"
tools:context=".ResetPasswordFragment">

<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBar_resetPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:liftOnScroll="true"
>

<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar_resetPassword"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/white"
/>

</com.google.android.material.appbar.AppBarLayout>

<androidx.core.widget.NestedScrollView
android:id="@+id/scrollView_resetPassword"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<!-- Linear layout -->

</androidx.core.widget.NestedScrollView>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

Activity 中的工具栏

这次尝试成功了。它在我的 Activity 中添加了一个工具栏,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
android:background="@color/colorAccent"
android:orientation="vertical"
tools:context=".LoginActivity">

<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="?attr/actionBarSize"
android:layout_width="match_parent"
android:background="@color/white"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
/>
<fragment
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="0dp"
android:layout_height="0dp"
app:defaultNavHost="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/toolbar"
app:navGraph="@navigation/nav_graph" />

</androidx.constraintlayout.widget.ConstraintLayout >

在我的 Controller 中,我添加了以下内容:

        NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
AppBarConfiguration appBarConfiguration =
new AppBarConfiguration.Builder(navController.getGraph()).build();
Toolbar toolbar = findViewById(R.id.toolbar);
NavigationUI.setupWithNavController(toolbar, navController, appBarConfiguration);

这里的问题是工具栏显示在我的第一个 fragment 中,但我不希望这样。我尝试从第一个 fragment 中删除它并且它起作用了,但是当我尝试在第二个 fragment 中再次显示它时,由于某种原因 findViewById 无法识别我的工具栏。因此,在第二个 fragment 显示之前,我最终在第一个 fragment 代码中再次显示了工具栏。它有效,但您可以注意到工具栏显示时的动画,但它看起来不太好,而且我知道直接从我的 fragment 隐藏/显示工具栏是不行的。

我该怎么办?

那么,我需要做什么才能正确实现这一目标?将来,我也会有一些其他 fragment 的 Activity ,并且我将需要与我之前编写的行为类似的行为。我想从现在开始就做好这件事会更好。

谢谢!

最佳答案

您可以Listen for navigation events通过使用OnDestinationChangedListener。例如:

navController.addOnDestinationChangedListener(new NavController.OnDestinationChangedListener() {
@Override
public void onDestinationChanged(NavController controller,
NavDestination destination, Bundle arguments) {

// getting the current fragment id.
int currentFragmentID = destination.getId();

if(currentFragmentID == R.id.fragment_with_toolbar){
// showing the toolbar
toolbar.setVisibility(View.VISIBLE);
} else if(currentFragmentID == R.id.fragment_without_toolbar){
// hiding the toolbar
toolbar.setVisibility(View.GONE);
}
}
});

关于android - 如何使用 Jetpack 导航在 fragment 中使用工具栏而不是在 Activity 中使用工具栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57350017/

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