<bdo id='VPZZz'></bdo><ul id='VPZZz'></ul>

      1. <small id='VPZZz'></small><noframes id='VPZZz'>

      2. <i id='VPZZz'><tr id='VPZZz'><dt id='VPZZz'><q id='VPZZz'><span id='VPZZz'><b id='VPZZz'><form id='VPZZz'><ins id='VPZZz'></ins><ul id='VPZZz'></ul><sub id='VPZZz'></sub></form><legend id='VPZZz'></legend><bdo id='VPZZz'><pre id='VPZZz'><center id='VPZZz'></center></pre></bdo></b><th id='VPZZz'></th></span></q></dt></tr></i><div id='VPZZz'><tfoot id='VPZZz'></tfoot><dl id='VPZZz'><fieldset id='VPZZz'></fieldset></dl></div>

        <legend id='VPZZz'><style id='VPZZz'><dir id='VPZZz'><q id='VPZZz'></q></dir></style></legend>
        <tfoot id='VPZZz'></tfoot>

        查看页面停止向某个方向滑动

        Viewpage stop swiping in a certain direction(查看页面停止向某个方向滑动)
            <bdo id='z1d0L'></bdo><ul id='z1d0L'></ul>

            <tfoot id='z1d0L'></tfoot>

            <small id='z1d0L'></small><noframes id='z1d0L'>

              <tbody id='z1d0L'></tbody>

            • <legend id='z1d0L'><style id='z1d0L'><dir id='z1d0L'><q id='z1d0L'></q></dir></style></legend>
                <i id='z1d0L'><tr id='z1d0L'><dt id='z1d0L'><q id='z1d0L'><span id='z1d0L'><b id='z1d0L'><form id='z1d0L'><ins id='z1d0L'></ins><ul id='z1d0L'></ul><sub id='z1d0L'></sub></form><legend id='z1d0L'></legend><bdo id='z1d0L'><pre id='z1d0L'><center id='z1d0L'></center></pre></bdo></b><th id='z1d0L'></th></span></q></dt></tr></i><div id='z1d0L'><tfoot id='z1d0L'></tfoot><dl id='z1d0L'><fieldset id='z1d0L'></fieldset></dl></div>
                  本文介绍了查看页面停止向某个方向滑动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何阻止 viewpager 仅向一个方向滚动.例如,只允许向右滑动,但不允许向左滑动.我完全被卡住了,任何帮助将不胜感激.请注意,我需要让它适用于 Android 2.2 版,所以我使用 ViewPager 的兼容性库.

                  How can I stop viewpager from scrolling in one direction only. For example, allow swipes only to the right, but not to the left. I am absolutely stuck, any help would be greatly appreciated. To note that I need to get this to work for Android version 2.2, so I am using the compatibilty library for ViewPager.

                  提前致谢

                  推荐答案

                  你必须制作你自己的 ViewPager 来扩展原来的 ViewPager 并覆盖 onTouchEvent 方法

                  You will have to make your own ViewPager that extends the original ViewPager and override the onTouchEvent method

                  public class CustomViewPager extends ViewPager {
                  
                      float lastX = 0;
                  
                      boolean lockScroll = false;
                  
                      public CustomViewPager(Context context, AttributeSet attrs) {
                          super(context, attrs);
                      }
                  
                      public CustomViewPager(Context context) {
                          super(context);
                      }
                  
                      @Override
                      public boolean onTouchEvent(MotionEvent ev) {
                  
                          switch (ev.getAction()) {
                          case MotionEvent.ACTION_DOWN:
                              lastX = ev.getX();
                              lockScroll = false;
                              return super.onTouchEvent(ev);
                          case MotionEvent.ACTION_MOVE:
                  
                              if (lastX > ev.getX()) {
                                  lockScroll = false;
                              } else {
                                  lockScroll = true;
                              }
                  
                              lastX = ev.getX();
                              break;
                          }
                  
                          lastX = ev.getX();
                  
                          if(lockScroll) {
                              return false;
                          } else {
                              return super.onTouchEvent(ev);
                          }
                  
                      }
                  
                  
                  
                  }
                  

                  这篇关于查看页面停止向某个方向滑动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)
                  Highlight Read-Along Text (in a storybook type app for iPhone)(突出显示朗读文本(在 iPhone 的故事书类型应用程序中))
                  Storing and reading files from Documents directory iOS 5(从 Documents 目录存储和读取文件 iOS 5)
                  How can i use MYSQL database connection in iphone application useing cocos2d?(如何在使用 cocos2d 的 iphone 应用程序中使用 MYSQL 数据库连接?)
                  Smoothly drag a Sprite in cocos2d - iPhone(在 cocos2d 中平滑拖动一个 Sprite - iPhone)
                  Cocos2D complex animations(Cocos2D 复杂动画)

                  <tfoot id='c19uW'></tfoot>
                    • <small id='c19uW'></small><noframes id='c19uW'>

                        <bdo id='c19uW'></bdo><ul id='c19uW'></ul>

                        <i id='c19uW'><tr id='c19uW'><dt id='c19uW'><q id='c19uW'><span id='c19uW'><b id='c19uW'><form id='c19uW'><ins id='c19uW'></ins><ul id='c19uW'></ul><sub id='c19uW'></sub></form><legend id='c19uW'></legend><bdo id='c19uW'><pre id='c19uW'><center id='c19uW'></center></pre></bdo></b><th id='c19uW'></th></span></q></dt></tr></i><div id='c19uW'><tfoot id='c19uW'></tfoot><dl id='c19uW'><fieldset id='c19uW'></fieldset></dl></div>

                            <tbody id='c19uW'></tbody>
                          1. <legend id='c19uW'><style id='c19uW'><dir id='c19uW'><q id='c19uW'></q></dir></style></legend>