我使用android.support.v4.widget.DrawerLayout
的抽屉菜单作为我的xamarin应用程序。目前,当我单击抽屉列表中的每个项目时,抽屉布局会自动关闭。我不记得我已经设置了任何我希望在选择后关闭布局的地方!如果这是默认行为,请告诉我在选择项目后,我想在哪里可以保持打开状态?
答案 0 :(得分:0)
在NavigationDrawerFragment类
中只需在项目选择
后注释关闭抽屉的行private void selectItem(int position) {
mCurrentSelectedPosition = position;
if (mDrawerListView != null) {
mDrawerListView.setItemChecked(position, true);
}
if (mDrawerLayout != null) {
//mDrawerLayout.closeDrawer(mFragmentContainerView);
}
if (mCallbacks != null) {
mCallbacks.onNavigationDrawerItemSelected(position);
}
}