selectedItemid不再工作后的Androidx.Navigation:导航库更新

发布于 2025-01-21 04:02:59 字数 293 浏览 0 评论 0原文

我有以下代码:

activityBinding.bottomNav.selectedItemId = R.id.myFragment

androidx.Navigation:Navigation-* 2.3.5版本,但不使用版本2.4.2和任何其他2.4。*版本。

我到处搜索,但是我还没有找到使其正常工作的解决方案(也没有找到菜单。finditem(r.id.myfragment)的替代代码。

对我做错了什么的想法吗?

I have the following code:

activityBinding.bottomNav.selectedItemId = R.id.myFragment

that was working fine with androidx.navigation:navigation-* version 2.3.5 but is not working with version 2.4.2 and any other 2.4.* version.

I've searched everywhere but I haven't found a solution to make it work (also alternative code like menu.findItem(R.id.myFragment).isChecked = true didn't work).

Any idea of what I'm doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浮萍、无处依 2025-01-28 04:02:59

由于新库,如果使用导航器,则将片段设置为启动片段,并且使用SelectedItemid选择相同的片段,则结果将是您将单击它,但不会发生任何事情。

将启动片段放在nav_graph中,然后使用selectedItemid选择正确的片段,使其正常工作。

Since the new library, if with the navigator you set a fragment as starting fragment and you select with selectedItemId the same fragment, the result will be that you'll click on it but nothing will happen.

Putting the starting fragment in the nav_graph to something else and then selecting the right one using selectedItemId make it working.

水溶 2025-01-28 04:02:59

它对我来说工作正常,我正在使用 2.4.1 版本的 androidx.navigation:navigation-*

navController.addOnDestinationChangedListener { _, destination, _ ->
            when (destination.id) {
                R.id.mainFragment, R.id.recentsFragment, R.id.favouriteFragment
                -> {
                    // do your Code
                }
                else -> {
                   //do your code
                }
            }
            Log.i("TLogs", "onCreate: ${bottomNavigationView.selectedItemId}")
        }

您可以根据我完成并附加的示例进行检查。

日志显示当前项目 ID

It is working fine for me I am using 2.4.1 version of androidx.navigation:navigation-*

navController.addOnDestinationChangedListener { _, destination, _ ->
            when (destination.id) {
                R.id.mainFragment, R.id.recentsFragment, R.id.favouriteFragment
                -> {
                    // do your Code
                }
                else -> {
                   //do your code
                }
            }
            Log.i("TLogs", "onCreate: ${bottomNavigationView.selectedItemId}")
        }

You can check it according to the example I have done and attached.

Log is showing the current item Id

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文