我使用以下代码从一个片段中打开另一个片段:
track nextFrag= new track();
login.this.getFragmentManager().beginTransaction()
.replace(R.id.content_frame, nextFrag, null)
.addToBackStack(null)
.commit();
代码工作正常(我可以加载新的片段),但抽屉继续突出显示旧的(如当前所选)。如何打开片段,同时在抽屉中显示当前所选的片段。
答案 0 :(得分:0)
As mentioned in the comment section: If you use Android Support Library v23 or above, you can use NavigationView.setCheckedItem(int). For more informations, see this answer.