<legend id='6noeK'><style id='6noeK'><dir id='6noeK'><q id='6noeK'></q></dir></style></legend>
    1. <tfoot id='6noeK'></tfoot>

      <small id='6noeK'></small><noframes id='6noeK'>

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

        您如何获取 Android 版 ViewPager 的当前页码?

        时间:2023-10-04

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

                <tbody id='aupwO'></tbody>
                <bdo id='aupwO'></bdo><ul id='aupwO'></ul>

              • <small id='aupwO'></small><noframes id='aupwO'>

              • <legend id='aupwO'><style id='aupwO'><dir id='aupwO'><q id='aupwO'></q></dir></style></legend>
                1. 本文介绍了您如何获取 Android 版 ViewPager 的当前页码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想知道 ViewPager 的当前页面位置.我创建了一个适配器并将这个适配器设置为 ViewPager.现在我想知道当前视图的当前页码或位置,因为我想在该特定页面上启动一些额外的事件.

                  I want to know the current page position of the ViewPager. I create an adapter and set this adapter to the ViewPager. Now I want to know the current page number or position of the current view, because I want to start some extra events on that particular page.

                  我使用 viewPager.setCurrentItem(1); 来设置第一项.

                  I used viewPager.setCurrentItem(1); for setting the first item.

                  有没有类似的获取当前页面的方法?

                  Is there a similar method for getting the current page?

                  推荐答案

                  在最新的包中你也可以使用

                  in the latest packages you can also use

                  vp.getCurrentItem()
                  

                  vp 是 viewPager,

                  vp is the viewPager ,

                  pageListener = new PageListener();
                  vp.setOnPageChangeListener(pageListener);
                  

                  您必须为您的 viewPager 放置一个页面更改侦听器.viewPager 上没有获取当前页面的方法.

                  you have to put a page change listener for your viewPager. There is no method on viewPager to get the current page.

                  private int currentPage;
                  
                      private static class PageListener extends SimpleOnPageChangeListener{
                              public void onPageSelected(int position) {
                                  Log.i(TAG, "page selected " + position);
                                     currentPage = position;
                          }
                      }
                  

                  这篇关于您如何获取 Android 版 ViewPager 的当前页码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:如何让我的 ViewPager 一次只加载一个页面,即 setOffscreenPageLimit(0); 下一篇:我可以将视图寻呼机与视图一起使用(而不是片段)

                  相关文章

                  <tfoot id='Rz0rf'></tfoot>

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

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