最赞回答 / 不是离骚的骚
有的,float scale = l * 1.0f / menuWidth;//1~0 menu.setTranslationX(menuWidth * scale );menu为上面绑定的左侧的菜单,设置他宽度的那个这样就可以不用兼容3.0一下的版本了
2015-06-27
最新回答 / 蔡头2015
public void toggleMenu(){ if(open){ this.smoothScrollTo((int) (screenWidth-right), 0); open=false; }else{ this.smoothScrollTo(0, 0); open=true; } }
2015-06-08