push activity on the right when open drawer

后端 未结 8 2017
隐瞒了意图╮
隐瞒了意图╮ 2020-12-07 11:29

I have implemented drawerlayout which slides from the right but it does not shift the activity the right like facebook does (See below image). How do I push the current acti

8条回答
  •  抹茶落季
    2020-12-07 11:44

    This is not recommended, but you can move your layout programmatically:

    @Override
    public void onDrawerSlide(View drawerView, float offset) {
        View container = findViewById(R.id.container);
        container.setTranslationX(offset * drawerView.getWidth());
    }
    

提交回复
热议问题