西西软件园多重安全检测下载网站、值得信赖的软件下载站!
软件
软件
文章
搜索

首页编程开发Android → Android开发实现qqminihd 左右滑动菜单效果

Android开发实现qqminihd 左右滑动菜单效果

相关软件相关文章发表评论 来源:西西整理时间:2012/10/17 8:18:00字体大小:A-A+

作者:佚名点击:148次评论:0次标签: Android开发

  • 类型:编程工具大小:13.8M语言:英文 评分:5.5
  • 标签:
立即下载

观察qqminihd界面,发现其界面能够左右滑动来实现两侧菜单效果。

自定义Layout:ScrollLayout.java

直接贴出代码:

  1 package grimbo.android.demo.slidingmenu;
  2
  3 import android.content.Context;
  4 import android.util.AttributeSet;
  5 import android.util.Log;
  6 import android.view.GestureDetector;
  7 import android.view.GestureDetector.OnGestureListener;
  8 import android.view.MotionEvent;
  9 import android.view.View;
10 import android.view.ViewConfiguration;
11 import android.view.animation.AnimationUtils;
12 import android.widget.LinearLayout;
13 import android.widget.Scroller;
14
15 public class ScrollLayout extends LinearLayout {
16
17 //    private static final String TAG = "scroller";
18
19     private Scroller scroller;
20
21     private int currentScreenIndex;
22
23     private GestureDetector gestureDetector;
24
25     // 设置一个标志位,防止底层的onTouch事件重复处理UP事件
26     private boolean fling;
27
28     /**
29      * 菜单栏的宽度
30      */
31     int menuWidth=80;
32    
33     /**
34      * 显示左边菜单
35      * 否则显示右边菜单
36      */
37     private boolean showLeft=true;
38    
39     /**
40      * 滚出边界监听器
41      */
42     private OnScrollSideChangedListener scrollSideChangedListener;
43    
44     public Scroller getScroller() {
45             return scroller;
46     }
47
48     public OnScrollSideChangedListener getScrollSideChangedListener() {
49         return scrollSideChangedListener;
50     }
51
52     public void setScrollSideChangedListener(
53             OnScrollSideChangedListener scrollSideChangedListener) {
54         this.scrollSideChangedListener = scrollSideChangedListener;
55     }
56
57     public ScrollLayout(Context context, AttributeSet attrs) {
58             super(context, attrs);
59             initView(context);
60     }
61
62     public ScrollLayout(Context context) {
63             super(context);
64             initView(context);
65     }
66
67     private void initView(final Context context) {
68             this.scroller = new Scroller(context,AnimationUtils.loadInterpolator(context,
69                     android.R.anim.overshoot_interpolator));
70
71             this.gestureDetector = new GestureDetector(new OnGestureListener() {
72
73                     @Override
74                     public boolean onSingleTapUp(MotionEvent e) {
75                             return false;
76                     }
77
78                     @Override
79                     public void onShowPress(MotionEvent e) {
80                     }
81
82                     @Override
83                     public boolean onScroll(MotionEvent e1, MotionEvent e2,
84                                     float distanceX, float distanceY) {
85
86                             {// 防止向第一页之前移动
87                                 if(1==currentScreenIndex)
88                                 {
89                                     int screenLeft=getWidth()-menuWidth;
90                                     if(showLeft && getScrollX()>screenLeft)
91                                     {
92                                         showLeft=false;
93 //                                        Log.e("TAG","显示右边菜单栏");
94                                         if(null!=scrollSideChangedListener)
95                                             scrollSideChangedListener.onScrollSideChanged(ScrollLayout.this, showLeft);
96                                     }
97                                     else if(!showLeft && getScrollX()<screenLeft)
98                                     {
99                                         showLeft=true;
100 //                                        Log.e("TAG","显示左边菜单栏");
101                                         if(null!=scrollSideChangedListener)
102                                             scrollSideChangedListener.onScrollSideChanged(ScrollLayout.this, showLeft);
103                                     }
104                                 }
105                                
106                                     fling = true;
107                                     scrollBy((int) distanceX, 0);
108 //                                    Log.d("TAG", "on scroll>>>>>>>>>>>>>>>>>移动<<<<<<<<<<<<<<>>>");
109                             }
110                             return true;
111                     }
112
113                     @Override
114                     public void onLongPress(MotionEvent e) {
115                     }
116
117                     @Override
118                     public boolean onFling(MotionEvent e1, MotionEvent e2,
119                                     float velocityX, float velocityY) {
120                        
121                             if (Math.abs(velocityX) > ViewConfiguration.get(context)
122                                             .getScaledMinimumFlingVelocity())
123                             {// 判断是否达到最小轻松速度,取绝对值的
124                                 fling = true;
125                                 snapToDestination();
126 //                                Log.d(TAG, "on scroll>>>>>>>>>>>>>>>>>滑动<<<<<<<<<<<<<<>>>");
127                             }
128
129                             return true;
130                     }
131
132                     @Override
133                     public boolean onDown(MotionEvent e) {
134                             return false;
135                     }
136             });
137            
138     }
139     //每一个屏的边界值
140     //0----[getWidth()-20]----[2*getWidth()-20]-----[3*getWidth()-40]
141    
142    
143     @Override
144     protected void onLayout(boolean changed, int left, int top, int right,
145                     int bottom) {
146             /**
147              * 设置布局,将子视图顺序横屏排列
148              */
149             super.onLayout(changed, left, top, right, bottom);
150             int move=getWidth()-menuWidth;
151             for (int i = 0; i < getChildCount(); i++)
152             {
153                     View child = getChildAt(i);
154 //                    child.setVisibility(View.VISIBLE);
155                     //移动一定的距离
156                     child.layout(child.getLeft()+move,child.getTop(),child.getRight()+move,child.getBottom());
157             }
158     }
159
160     @Override
161     public void computeScroll() {
162             if (scroller.computeScrollOffset()) {
163 //                    Log.d(TAG, ">>>>>>>>>>computeScroll>>>>>"+scroller.getCurrX());
164                     scrollTo(scroller.getCurrX(), 0);
165                     postInvalidate();
166             }
167     }
168
169     @Override
170     public boolean onTouchEvent(MotionEvent event) {
171            
172             float x2s=getScrollX()+event.getX();
173            
174             if(x2s<getWidth()-menuWidth || x2s>2*getWidth()-menuWidth)
175             {//动作在区域外面
176                 if(!fling)//没有在滑动
177                 {
178 //                    Log.d(TAG, "on scroll>>>>>>>>>>>>>>>>>动作在区域外面 没有在滑动<<<<<<<<<<<<<<>>>");
179                     return false;
180                 }
181                 else if(MotionEvent.ACTION_UP!=event.getAction())
182                 {//否则如果也不是抬起手势,则强制模拟抬起
183                     snapToDestination();
184                     fling = false;
185 //                    Log.d(TAG, "on scroll>>>>>>>>>>>>>>>>>动作在区域外面 在滑动 也不是抬起手势<<<<<<<<<<<<<<>>>");
186                     return false;
187                 }
188 //                Log.e(TAG, "on scroll>>>>>>>>>>>>>>>>>动作在区域外面 在滑动 是抬起手势<<<<<<<<<<<<<<>>>");
189             }
190            
191             gestureDetector.onTouchEvent(event);
192
193             switch (event.getAction()) {
194             case MotionEvent.ACTION_DOWN:
195                     break;
196             case MotionEvent.ACTION_MOVE:
197                     break;
198             case MotionEvent.ACTION_UP:
199 //                    Log.d(TAG, ">>ACTION_UP:>>>>>>>> MotionEvent.ACTION_UP>>>>>");
200 //                    if (!fling)
201                     {
202                             snapToDestination();
203                     }
204                     fling = false;
205                     break;
206             default:
207                     break;
208             }
209             return true;
210     }
211
212     /**
213      * 切换到指定屏
214      *
215      * @param whichScreen
216      */
217     public void scrollToScreen(int whichScreen) {
218             if (getFocusedChild() != null && whichScreen != currentScreenIndex
219                             && getFocusedChild() == getChildAt(currentScreenIndex)) {
220                     getFocusedChild().clearFocus();
221             }
222             int delta = 0;
223            
224             if(whichScreen==0)
225                 delta= - getScrollX();
226             else if(whichScreen==1)
227                 delta= getWidth()-menuWidth- getScrollX();
228             else if(whichScreen==2)
229                 delta= 2*(getWidth()-menuWidth)- getScrollX();
230             else
231                 return;
232 //                delta = whichScreen * getWidth() - getScrollX();
233            
234             scroller.startScroll(getScrollX(), 0, delta, 0, Math.abs(delta) * 2);
235             invalidate();
236
237             currentScreenIndex = whichScreen;
238     }
239
240     /**
241      * 根据当前x坐标位置确定切换到第几屏
242      */
243     private void snapToDestination() {
244        
245         if(getScrollX()<(getWidth()-menuWidth)/2)
246             scrollToScreen(0);
247         else if(getScrollX()<(getWidth()-menuWidth+getWidth()/2))
248             scrollToScreen(1);
249         else
250             scrollToScreen(2);
251     }
252
253     public interface OnScrollSideChangedListener
254     {
255         public void onScrollSideChanged(View v,boolean leftSide);
256     }
257 }

接下来,在定义activity里面的布局my_layout.xml:

1 <?xml version="1.0" encoding="utf-8"?>
2 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
3     xmlns:app="http://schemas.android.com/apk/res/grimbo.android.demo.slidingmenu"
4     android:id="@+id/FrameLayout1"
5     android:layout_width="match_parent"
6     android:layout_height="match_parent" >
7     <LinearLayout
8         android:layout_width="match_parent"
9         android:layout_height="match_parent"
10         android:id="@+id/left_menu"
11         android:background="#333"
12         android:orientation="vertical" >
13
14         <Button
15             android:layout_width="200dp"
16             android:layout_height="wrap_content"
17             android:text="左菜单一" />
18         <Button
19             android:layout_width="200dp"
20             android:layout_height="wrap_content"
21             android:text="左菜单二" />
22     </LinearLayout>
23
24     <LinearLayout
25         android:id="@+id/right_menu"
26         android:layout_width="match_parent"
27         android:layout_height="match_parent"
28         android:background="#666"
29         android:orientation="horizontal" >
30         <LinearLayout
31             android:layout_width="wrap_content"
32             android:layout_height="wrap_content"
33             android:layout_weight="1"
34             android:orientation="vertical" >
35         </LinearLayout>
36         <LinearLayout
37             android:layout_width="200dp"
38             android:layout_height="wrap_content"
39             android:orientation="vertical" >
40             <Button
41                 android:layout_width="match_parent"
42                 android:layout_height="wrap_content"
43                 android:text="右菜单一" />
44             <Button
45                 android:layout_width="match_parent"
46                 android:layout_height="wrap_content"
47                 android:text="右菜单二" />
48            
49         </LinearLayout>
50        
51     </LinearLayout>
52     <grimbo.android.demo.slidingmenu.ScrollLayout
53         android:layout_width="match_parent"
54         android:orientation="vertical"
55         android:id="@+id/my_scrollLayout"
56         android:layout_height="match_parent">
57         <LinearLayout
58             android:layout_width="match_parent"
59             android:layout_height="match_parent"
60             android:background="#aaa"
61             android:orientation="vertical" >
62
63
64             <Button
65                 android:id="@+id/button1"
66                 android:layout_width="match_parent"
67                 android:layout_height="wrap_content"
68                 android:text="Button Button" />
69
70             <Spinner
71                 android:id="@+id/spinner1"
72                 android:layout_width="match_parent"
73                 android:layout_height="wrap_content" />
74
75             <SeekBar
76                 android:id="@+id/seekBar1"
77                 android:layout_width="match_parent"
78                 android:layout_height="wrap_content" />
79            
80         </LinearLayout>
81
82     </grimbo.android.demo.slidingmenu.ScrollLayout>
83    
84 </FrameLayout>

最后,在activity里面的onCreate函数里加上:

 1 setContentView(R.layout.my_layout);
 2         
 3         final LinearLayout left=(LinearLayout)findViewById(R.id.left_menu);
 4         final LinearLayout right=(LinearLayout)findViewById(R.id.right_menu);
 5         right.setVisibility(View.GONE);
 6         left.setVisibility(View.VISIBLE);
 7         
 8         ScrollLayout mScrollLayout=(ScrollLayout)findViewById(R.id.my_scrollLayout);
 9         mScrollLayout.setScrollSideChangedListener(new OnScrollSideChangedListener() {
10             @Override
11             public void onScrollSideChanged(View v, boolean leftSide) {
12                 if(leftSide)
13                 {
14                     right.setVisibility(View.GONE);
15                     left.setVisibility(View.VISIBLE);
16                 }else
17                 {
18                     right.setVisibility(View.VISIBLE);
19                     left.setVisibility(View.GONE);
20                 }
21             }
22         });

大功告成!左右滑动是弹性效果也一并实现~

    app制作
    (8)app制作
    一款好的不仅需要有创意的开发人员还要有一款合适的制作软件,有时候一款好用的制作软件可以让开发人员节省很多不必要的时间。另外对于一些不懂编程的人员来说制作一款也不是没有可能的,有些功能强大的制作软件可以让完全不懂编程的人也能制作出一些精美的来,比如一些公司的产品展示这类不需要有自己特色的就可以通过制作软件轻松做出来。这里西西给大家收整理了一些好用的制作软件下载,希望对大家有所帮助。...更多>>
    • appBookv1.0 官方版

      07-04 / 132.6M

      推荐理由:appBook 一次编辑多平台发布 轻松拥有自己的app,appBook是全球首家运行在PC和Mac的移动平台应用编辑制作软
    • 安卓平台反编译神器(Apktool)v6.0.

      02-19 / 13.0M

      推荐理由:Apktool,一款安卓移动平台上的反编译利器!Apktool现已完美兼容Android5.0L,使用它可以修改软件应用名称,
    • myeclipse 10.0

      11-03 / 886M

      推荐理由:MyEclipse 10使用最高级的桌面和Web开发技术,包括 HTML5 和 Java EE 6,支持 JPA 2.0、JSF 2.0 、Eclipsel
    • 移动应用开发工具(AppCan IDE)V3.1

      11-14 / 421.8M

      推荐理由:AppCan应用使用HTML5、CSS3和JavaScript语言编写,通过AppCan IDE提供的本地打包工具或在线编译系统生成可在
    • appMaker中文版v1.0 官方免费版

      03-06 / 315.8M

      推荐理由:appMaker中文版是一款免费的app制作软件,可以制作各种展示类的app。如:移动互动电子书、电子杂志、地产楼
    • 安卓开发(Google Android SDK)r24.

      05-15 / 85.8M

      推荐理由:Google Android SDKAndroid是Google自己研发的手机平台操作系统,该平台基于开源软件Linux,由操作系统、中
    eclipse
    (119)eclipse
    是对的扩展,利用它我们可以在数据库和的开发发布以及应用程序服务器的整合方面极大的提高工作效率。它是功能丰富的集成开发环境,包括了完备的编码调试测试和发布功能,完整支持,,,,,,,。分类在结构上,的特征可以被分为类模型开发工具开发工具应用程序服务器的连接器项目部署服务数据库服务整合帮助...更多>>
    eclipse中文版下载
    (27)eclipse中文版下载
    是一个开放源代码的基于的可扩展开发平台。还包括插件开发环境,,这个组件主要针对希望扩展的软件开发人员,因为它允许他们构建与环境无缝集成的工具。它只是一个框架和一组服务,用于通过插件组件构建开发环境。幸运的是,附带了一个标准的插件集,包括开发工具,。汉化方法把语言包中的,文件夹直接覆盖到安装目录中,或者把汉化包放到目录下面。常用快捷键.快速修复.删除当前行.复制当前行到下一行.或者说是空格由于后者与输入法...更多>>
    JAVA软件
    (60)JAVA软件
    软件下载,编程软件下载专题有多款适合编程爱好者学习使用的软件,我们提供了适用于开发者使用的相关软件的各个版本跟新的下载地址,以方便各位爱好者使用学习。如果您有什么好的编程软件可以向我们提供分享下载,如果下载的软件有什么问题也可以向我们提供建议,祝程序员们学习愉快软件开发其实可以不用其他软件的。只需要安装了工具包即可,这个是必须的。并且一定要配置好系统的环境变量。这个可以到网上去查,网上很多。然后进...更多>>

    相关评论

    阅读本文后您有什么感想? 已有人给出评价!

    • 8 喜欢喜欢
    • 3 顶
    • 1 难过难过
    • 5 囧
    • 3 围观围观
    • 2 无聊无聊

    热门评论

    最新评论

    发表评论 查看所有评论(0)

    昵称:
    表情: 高兴 可 汗 我不要 害羞 好 下下下 送花 屎 亲亲
    字数: 0/500 (您的评论需要经过审核才能显示)