SlideMenuLayout icon indicating copy to clipboard operation
SlideMenuLayout copied to clipboard

:fire:An android slide menu that supports left and right swipes and slides with parallax.(一个支持左右滑动并带有视差滑动效果的安卓侧滑菜单控件.仿[QQ/探探侧滑])

Results 7 SlideMenuLayout issues
Sort by recently updated
recently updated
newest added

无法获取主视图contentView,设置contentToggle为true时点击了主视图的空白处无法关闭侧滑菜单

how to change icon toggle in xml

手指触摸左侧屏幕边缘滑出左侧菜单时,手指划过菜单默认滑出宽度的1/2时,左侧菜单没有自动展开到默认的宽度,而是停止了,造成左侧菜单不完全显示了

我想把这个layout当做一个左滑的控件使用,设置了width不为match_parent时点击和滑动时间都无法响应了

``` protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { //默认全屏 int widthMode = MeasureSpec.getMode(widthMeasureSpec); int widthSize = MeasureSpec.getSize(widthMeasureSpec); int widthResult = 0; if (widthMode == MeasureSpec.EXACTLY) { widthResult = widthSize; }...