Android自定义View 仿QQ侧滑菜单的实现代码
程序员文章站
2023-12-18 12:51:22
先看看qq的侧滑效果
分析一下
先上原理图(不知道能否表达的清楚 ==)
-首先这里使用了 android 的horizontalscrollview 水平滑...
先看看qq的侧滑效果
分析一下
先上原理图(不知道能否表达的清楚 ==)
-首先这里使用了 android 的horizontalscrollview
水平滑动布局作为容器,当然我们需要继承它自定义一个侧滑视图
- 这个容器里面有一个父布局(一般用linerlayout,本demo用的是),这个父布局里面有且只有两个子控件(布局),初始状态菜单页的位置在y轴上存在偏移这样可以就可以形成主页叠在菜单页的上方的视觉效果;然后在滑动的过程程中 逐渐修正偏移,最后菜单页和主页并排排列。原理搞清了实现起来就不是事儿了……
具体实现
布局代码
<fierce_luk.com.sideslipviewdemo2.sideslipview android:id="@+id/my_veiw" android:layout_width="match_parent" android:layout_height="match_parent" android:scrollbars="none" luk:leftpanding="200dp"> <!--如果菜单在左边直接用 linearlayout--> <framelayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <textview android:id="@+id/image2" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@mipmap/homepage" android:gravity="center" android:tag="0" android:text="菜单" android:textcolor="@color/coloraccent" android:textsize="60sp" /> <textview android:id="@+id/image1" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/color1" android:gravity="center" android:tag="1" android:text="主页面" android:textcolor="@color/coloraccent" android:textsize="60sp" /> </framelayout> <!--<fragment--> <!--android:name="com.luk.bluetoothapp.fragment.mybluetoothdevice"--> <!--android:layout_width="match_parent"--> <!--android:layout_height="match_parent"--> <!--android:tag="1" />--> <!--<fragment--> <!--android:name="com.luk.bluetoothapp.fragment.homefragment"--> <!--android:layout_width="match_parent"--> <!--android:layout_height="match_parent"--> <!--android:tag="0" />--> </fierce_luk.com.sideslipviewdemo2.sideslipview>
自定义的侧滑视图
最核心的部分
public class sideslipview extends horizontalscrollview { private int mscreenwidth;//屏幕宽度 private int mmenuleftpadding; private int mbluetoothwidth;//菜单的宽度 private int mhalfmenuwidth; view home; view bluetooth; protected boolean isopen; protected boolean isfirst = true; public sideslipview(context context) { // super 改 this this(context, null); } public sideslipview(context context, attributeset attrs) { // super 改 this this(context, attrs, 0); } public sideslipview(context context, attributeset attrs, int defstyleattr) { super(context, attrs, defstyleattr); //测量屏幕宽度 windowmanager wm = (windowmanager) context.getsystemservice(context.window_service); displaymetrics metrics = new displaymetrics(); wm.getdefaultdisplay().getmetrics(metrics); mscreenwidth = metrics.widthpixels; // mscreenwidth = context.getresources().getdisplaymetrics().widthpixels; log.e("tag", "myscrollview: mscreenwidth" + mscreenwidth); //获取 自定义的属性值 typedarray a = context.obtainstyledattributes(attrs, r.styleable.myscrollview); int n = a.length(); for (int i = 0; i < n; i++) { int arrt = a.getindex(i); switch (arrt) { case r.styleable.myscrollview_leftpanding: mmenuleftpadding = (int) a.getdimension(r.styleable.myscrollview_leftpanding, 0); break; default: break; } } log.e("tag", "myscrollview: mmenuleftpadding" + mmenuleftpadding); a.recycle(); } @override protected void onmeasure(int widthmeasurespec, int heightmeasurespec) { if (isfirst) { //获取子布局 并设置宽度 //如果菜单在左边 用linearlayout就行 // linearlayout layout = (linearlayout) this.getchildat(0); /**此处因为 把侧边拉出页面设置在了右边 所有用 framelayout * 不然在设置偏移量时 隐藏的侧边菜单会跑到主页面的上面*/ framelayout layout = (framelayout) this.getchildat(0); home = layout.getchildat(1); bluetooth = layout.getchildat(0); layoutparams params = new layoutparams(mbluetoothwidth, getresources().getdisplaymetrics().heightpixels); params.setmargins(mscreenwidth, 0, 0, 0); bluetooth.setlayoutparams(params); mbluetoothwidth = mscreenwidth - mmenuleftpadding; home.getlayoutparams().width = mscreenwidth; bluetooth.getlayoutparams().width = mbluetoothwidth; mhalfmenuwidth = mbluetoothwidth / 2; isfirst = false; } super.onmeasure(widthmeasurespec, heightmeasurespec); } @override protected void onlayout(boolean changed, int l, int t, int r, int b) { super.onlayout(changed, l, t, r, b); //首先隐藏 bluetooth if (changed) this.scrollto(0, mbluetoothwidth); } animation anim; @override public boolean ontouchevent(motionevent ev) { switch (ev.getaction()) { case motionevent.action_up: int scrollx = getscrollx(); if (scrollx >= mhalfmenuwidth) { log.e("tag", "===="); this.smoothscrollto(mbluetoothwidth, 0); isopen = true; } else { this.smoothscrollto(0, 0); isopen = false; } //必须消耗事件 return true; } return super.ontouchevent(ev); //return true; } /** * 打开菜单栏 */ protected void openmenu() { if (isopen) return; this.smoothscrollto(mbluetoothwidth, 0); isopen = true; } /** * 关闭菜单栏 */ protected void closemenu() { if (!isopen) return; this.smoothscrollto(0, 0); isopen = false; } /** * 按钮切换菜单 */ public void togglemenu() { if (isopen) closemenu(); else openmenu(); } @override protected void onscrollchanged(int l, int t, int oldl, int oldt) { super.onscrollchanged(l, t, oldl, oldt); //此处 l 起始值为零(没有偏移) log.e("tag", "l=" + l + " t=" + t); log.e("tag", "oldl=" + oldl + " oldt=" + oldt); // scale 在 1 到 0 之间 float scale = l * 1.0f / mbluetoothwidth; /** * 抽屉式侧滑 * scaleleft 从默认偏移量到偏移量 为零 *实现 * */ float scaleleft = 0.4f - 0.4f * scale; /**设置 x 轴方向的偏移量**/ viewhelper.settranslationx(bluetooth, -(mbluetoothwidth * scaleleft)); log.e("tag", "mbluetoothwidth+" + mbluetoothwidth); log.e("tag", "=============" + mbluetoothwidth * scale + "scale" + scale); /* *//**设置缩放时的 轴心点**//* //此处轴心为右边界的中点 viewhelper.setpivoty(home, mscreenwidth); viewhelper.setpivotx(home, home.getheight() / 2); *//**设置 xy轴方向的 缩放动画(从 1 到 0.9)**//* float pivoxy = 1 - 0.4f * scale; viewhelper.setscalex(home, pivoxy); viewhelper.setscaley(home, pivoxy);*/ /* *//**设置透明度**//* //从 1 到 0.6; float alpha = 1 - 0.4f * scale; viewhelper.setalpha(home, alpha);*/ } }
扩展
添加之定义属性 让用户配置菜单距离右边的边距的值;
首先在values文件夹下新建一个attr.xml,写入以下内容:
<resources> <declare-styleable name="myscrollview"> <attr name="rightpanding" format="dimension" /> <attr name="leftpanding" format="dimension" /> </declare-styleable> </resources>
在布局里设置边距
<fierce_luk.com.sideslipviewdemo2.sideslipview android:id="@+id/my_veiw" android:layout_width="match_parent" android:layout_height="match_parent" android:scrollbars="none" luk:leftpanding="200dp">
其他的就不赘述了,看看效果
- 源码下载demo源码点击下载
总结
以上所述是小编给大家介绍的android自定义view 仿qq侧滑菜单的实现代码,希望对大家有所帮助