<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>

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

        时间:2023-10-04
            <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);
                          }
                  
                      }
                  
                  
                  
                  }
                  

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

                  上一篇:ListView 中的 ViewPager 和 OnItemClickListener 下一篇:如何正确使用 ViewPager 的片段?

                  相关文章

                  <tfoot id='c19uW'></tfoot>
                1. <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>

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