Android DrawerLayout.setDrawerLockMode() not working

99封情书 提交于 2019-12-23 07:29:16

问题


I have a Navigation Drawer (appcompat v7) in my app which is working perfectly fine.

Now I want to disable it, until the user buys an in-app-purchase to unlock additional functionality. So in my Activity.onCreate(), after initializing the drawer and populating it, I am calling this function:

mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);

This function is not doing anything. The drawer continues to open and close as normal after tapping the drawer carat in the actionbar. I tried calling this function in Activity.onResume() without any difference.

What is the correct way to use this function? (I tried looking online for answers, but couldn't find anything which addresses my issue). Any help is appreciated, as I am stuck on this issue for quite sometime now.


回答1:


mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);

is only disabling the opening drawer layout by swiping till you click navigation drawer icon keep a boolean variable

write mDrawerLayout.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED); in onStart() and also write below lines of code

  @Override
    public boolean onOptionsItemSelected(android.view.MenuItem item) {

        if(!disabled)
        {
        if (item.getItemId() == android.R.id.home) {

            if (mDrawerLayout.isDrawerOpen(mDrawerLinearLayout)) {
                mDrawerLayout.closeDrawer(mDrawerLinearLayout);
            } else {
                mDrawerLayout.openDrawer(mDrawerLinearLayout);
            }
        }
        }
        return super.onOptionsItemSelected(item);
    }

this will work for sure




回答2:


When you call setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED) it locks opening and closing drawer only by swipes.

The drawer continues to open and close as normal after tapping the drawer carat in the action bar because your drawer will still respond to calls to openDrawer(int), closeDrawer(int) although a drawer is locked. You need to add some logic in your action bar menu button listener and not to call openDrawer(int) when you don't want it to open.

Btw, it is okay to call setDrawerLockMode(int) in onСreate




回答3:


There is a bug with DrawerLayout and used gravity. I have reported it here:

https://issuetracker.google.com/issues/136738274



来源:https://stackoverflow.com/questions/27074106/android-drawerlayout-setdrawerlockmode-not-working

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!