从其他片段打开片段:抽屉

时间:2016-10-19 13:25:07

标签: android

我使用以下代码从一个片段中打开另一个片段:

track nextFrag= new track();
login.this.getFragmentManager().beginTransaction()
        .replace(R.id.content_frame, nextFrag, null)
        .addToBackStack(null)
        .commit();

代码工作正常(我可以加载新的片段),但抽屉继续突出显示旧的(如当前所选)。如何打开片段,同时在抽屉中显示当前所选的片段。

1 个答案:

答案 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.