web-dev-qa-db-ja.com

プログラムでスクロールビューを特定の編集テキストにスクロールする方法はありますか?

私はスクロールビューで非常に長い活動をしています。これは、ユーザーが入力する必要があるさまざまなフィールドを持つフォームです。フォームの下半分にチェックボックスがあり、ユーザーがチェックすると、ビューの特定の部分にスクロールしたいです。 EditTextオブジェクト(または他のビューオブジェクト)にプログラムでスクロールする方法はありますか?

また、XおよびY座標を使用してこれが可能であることはわかっていますが、ユーザーごとにフォームが変更される可能性があるため、これを避けたいと思います。

171
NotACleverMan
private final void focusOnView(){
        your_scrollview.post(new Runnable() {
            @Override
            public void run() {
                your_scrollview.scrollTo(0, your_EditBox.getBottom());
            }
        });
    }
402
Sherif elKhatib

スクロールビューの中心にビューをスクロールするが必要な場合、Sherif elKhatibの答えは大幅に改善されます。この再利用可能なメソッドは、Horizo​​ntalScrollViewの表示中心までビューをスムーズにスクロールします。

private final void focusOnView(final HorizontalScrollView scroll, final View view) {
    new Handler().post(new Runnable() {
        @Override
        public void run() {
            int vLeft = view.getLeft();
            int vRight = view.getRight();
            int sWidth = scroll.getWidth();
            scroll.smoothScrollTo(((vLeft + vRight - sWidth) / 2), 0);
        }
    });
}

垂直のScrollViewの場合は、xの入力のyおよびsmoothScrollの位置を変更します。そして、view.getTop()の代わりにview.getLeft()を使用し、view.getBottom()の代わりにv.getRight()を使用します。

:)

50
ahmadalibaloch

これは私のためにうまくいきます:

  targetView.getParent().requestChildFocus(targetView,targetView);

public void RequestChildFocus(子の表示、フォーカスの表示)

child-フォーカスが必要なこのViewParentの子。このビューには、フォーカスされたビューが含まれます。実際にフォーカスがあるのは、必ずしもビューではありません。

focused-実際にフォーカスを持っている子の子孫であるビュー

43
Swas_99

私の意見では、与えられた長方形にスクロールする最良の方法は View.requestRectangleOnScreen(Rect, Boolean) を経由することです。スクロールするViewで呼び出して、画面に表示するローカル四角形を渡す必要があります。 2番目のパラメーターは、スムーズスクロールの場合はfalse、即時スクロールの場合はtrueである必要があります。

final Rect rect = new Rect(0, 0, view.getWidth(), view.getHeight());
view.requestRectangleOnScreen(rect, false);
24
Michael

WarrenFaithのAnswerに基づいて小さなユーティリティメソッドを作成しました。このビューは、そのビューがスクロールビューで既に表示されていて、スクロールの必要がない場合にも考慮します。

public static void scrollToView(final ScrollView scrollView, final View view) {

    // View needs a focus
    view.requestFocus();

    // Determine if scroll needs to happen
    final Rect scrollBounds = new Rect();
    scrollView.getHitRect(scrollBounds);
    if (!view.getLocalVisibleRect(scrollBounds)) {
        new Handler().post(new Runnable() {
            @Override
            public void run() {
                scrollView.smoothScrollTo(0, view.getBottom());
            }
        });
    } 
}
12
Tobrun

TextViewリクエストをフォーカスする必要があります。

    mTextView.requestFocus();
10
Ovidiu Latcu

EditTextは、ScrollView内のいくつかのレイヤーにネストされていましたが、それ自体はレイアウトのルートビューではありません。 getTop()とgetBottom()は、ビューを含むビュー内の座標を報告するように見えたため、EditTextの親を反復処理して、ScrollViewの上部からEditTextの上部までの距離を計算しました。

// Scroll the view so that the touched editText is near the top of the scroll view
new Thread(new Runnable()
{
    @Override
    public
    void run ()
    {
        // Make it feel like a two step process
        Utils.sleep(333);

        // Determine where to set the scroll-to to by measuring the distance from the top of the scroll view
        // to the control to focus on by summing the "top" position of each view in the hierarchy.
        int yDistanceToControlsView = 0;
        View parentView = (View) m_editTextControl.getParent();
        while (true)
        {
            if (parentView.equals(scrollView))
            {
                break;
            }
            yDistanceToControlsView += parentView.getTop();
            parentView = (View) parentView.getParent();
        }

        // Compute the final position value for the top and bottom of the control in the scroll view.
        final int topInScrollView = yDistanceToControlsView + m_editTextControl.getTop();
        final int bottomInScrollView = yDistanceToControlsView + m_editTextControl.getBottom();

        // Post the scroll action to happen on the scrollView with the UI thread.
        scrollView.post(new Runnable()
        {
            @Override
            public void run()
            {
                int height =m_editTextControl.getHeight();
                scrollView.smoothScrollTo(0, ((topInScrollView + bottomInScrollView) / 2) - height);
                m_editTextControl.requestFocus();
            }
        });
    }
}).start();
7

別のバリエーションは次のとおりです。

scrollView.postDelayed(new Runnable()
{
    @Override
    public void run()
    {
        scrollView.smoothScrollTo(0, img_transparent.getTop());
    }
}, 2000);

または、post()メソッドを使用できます。

4

参照: https://stackoverflow.com/a/6438240/2624806

以下の方がはるかにうまくいきました。

mObservableScrollView.post(new Runnable() {
            public void run() { 
                mObservableScrollView.fullScroll([View_FOCUS][1]); 
            }
        });
2
CoDe

ScrollViewがChildViewの直接の親である場合、上記の回答は正常に機能します。 ChildViewがScrollViewの別のViewGroupでラップされている場合、View.getTop()はその親に対する相対位置を取得するため、予期しない動作が発生します。そのような場合、これを実装する必要があります:

public static void scrollToInvalidInputView(ScrollView scrollView, View view) {
    int vTop = view.getTop();

    while (!(view.getParent() instanceof ScrollView)) {
        view = (View) view.getParent();
        vTop += view.getTop();
    }

    final int scrollPosition = vTop;

    new Handler().post(() -> scrollView.smoothScrollTo(0, scrollPosition));
}
2
Sam Fisher

私はよりエレガントでエラーの少ないソリューションを使用して見つけたと思う

ScrollView.requestChildRectangleOnScreen

関係する計算はありません。また、他の提案された解決策とは異なり、上下のスクロールを正しく処理します。

/**
 * Will scroll the {@code scrollView} to make {@code viewToScroll} visible
 * 
 * @param scrollView parent of {@code scrollableContent}
 * @param scrollableContent a child of {@code scrollView} whitch holds the scrollable content (fills the viewport).
 * @param viewToScroll a child of {@code scrollableContent} to whitch will scroll the the {@code scrollView}
 */
void scrollToView(ScrollView scrollView, ViewGroup scrollableContent, View viewToScroll) {
    Rect viewToScrollRect = new Rect(); //coordinates to scroll to
    viewToScroll.getHitRect(viewToScrollRect); //fills viewToScrollRect with coordinates of viewToScroll relative to its parent (LinearLayout) 
    scrollView.requestChildRectangleOnScreen(scrollableContent, viewToScrollRect, false); //ScrollView will make sure, the given viewToScrollRect is visible
}

postDelayedが現在変更されている場合に備えて、ScrollViewにラップしてより信頼性を高めることをお勧めします

/**
 * Will scroll the {@code scrollView} to make {@code viewToScroll} visible
 * 
 * @param scrollView parent of {@code scrollableContent}
 * @param scrollableContent a child of {@code scrollView} whitch holds the scrollable content (fills the viewport).
 * @param viewToScroll a child of {@code scrollableContent} to whitch will scroll the the {@code scrollView}
 */
private void scrollToView(final ScrollView scrollView, final ViewGroup scrollableContent, final View viewToScroll) {
    long delay = 100; //delay to let finish with possible modifications to ScrollView
    scrollView.postDelayed(new Runnable() {
        public void run() {
            Rect viewToScrollRect = new Rect(); //coordinates to scroll to
            viewToScroll.getHitRect(viewToScrollRect); //fills viewToScrollRect with coordinates of viewToScroll relative to its parent (LinearLayout) 
            scrollView.requestChildRectangleOnScreen(scrollableContent, viewToScrollRect, false); //ScrollView will make sure, the given viewToScrollRect is visible
        }
    }, delay);
}
1
Štarke

次のようにObjectAnimatorを使用できます。

ObjectAnimator.ofInt(yourScrollView, "scrollY", yourView.getTop()).setDuration(1500).start();
0
Tazeem Siddiqui

Que:プログラムでスクロールビューを特定の編集テキストにスクロールする方法はありますか?

Ans:recyclerviewのネストされたスクロールビューの最後の位置にレコードデータが追加されました。

adapter.notifyDataSetChanged();
nested_scroll.setScrollY(more Detail Recycler.getBottom());

プログラムでスクロールビューを特定の編集テキストにスクロールする方法はありますか?

0
Ravi Bhalala

フォームに適した垂直スクロール。答えはAhmadalibaloch水平スクロールに基づいています。

private final void focusOnView(final HorizontalScrollView scroll, final View view) {
    new Handler().post(new Runnable() {
        @Override
        public void run() {
            int top = view.getTop();
            int bottom = view.getBottom();
            int sHeight = scroll.getHeight();
            scroll.smoothScrollTo(0, ((top + bottom - sHeight) / 2));
        }
    });
}
0
Qamar

ScrlMainがNestedScrollViewの場合、次を使用します。

scrlMain.post(new Runnable() {
                    @Override
                    public void run() {
                        scrlMain.fullScroll(View.FOCUS_UP);

                    }
                });
0
Ashwin Balani

Androidソースコードを調べると、ScrollViewscrollToChild(View)のメンバー関数が既にあることがわかります。これは、要求されたとおりのことを行います。残念ながら、この関数は、privateとマークされた不明瞭な理由のためです。その関数に基づいて、パラメーターとして指定されたScrollViewの上にある最初のViewを見つけてスクロールし、ScrollView内で見えるようにする次の関数を作成しました。

 private void make_visible(View view)
 {
  int vt = view.getTop();
  int vb = view.getBottom();

  View v = view;

  for(;;)
     {
      ViewParent vp = v.getParent();

      if(vp == null || !(vp instanceof ViewGroup))
         break;

      ViewGroup parent = (ViewGroup)vp;

      if(parent instanceof ScrollView)
        {
         ScrollView sv = (ScrollView)parent;

         // Code based on ScrollView.computeScrollDeltaToGetChildRectOnScreen(Rect rect) (Android v5.1.1):

         int height = sv.getHeight();
         int screenTop = sv.getScrollY();
         int screenBottom = screenTop + height;

         int fadingEdge = sv.getVerticalFadingEdgeLength();

         // leave room for top fading Edge as long as rect isn't at very top
         if(vt > 0)
            screenTop += fadingEdge;

         // leave room for bottom fading Edge as long as rect isn't at very bottom
         if(vb < sv.getChildAt(0).getHeight())
            screenBottom -= fadingEdge;

         int scrollYDelta = 0;

         if(vb > screenBottom && vt > screenTop) 
           {
            // need to move down to get it in view: move down just enough so
            // that the entire rectangle is in view (or at least the first
            // screen size chunk).

            if(vb-vt > height) // just enough to get screen size chunk on
               scrollYDelta += (vt - screenTop);
            else              // get entire rect at bottom of screen
               scrollYDelta += (vb - screenBottom);

             // make sure we aren't scrolling beyond the end of our content
            int bottom = sv.getChildAt(0).getBottom();
            int distanceToBottom = bottom - screenBottom;
            scrollYDelta = Math.min(scrollYDelta, distanceToBottom);
           }
         else if(vt < screenTop && vb < screenBottom) 
           {
            // need to move up to get it in view: move up just enough so that
            // entire rectangle is in view (or at least the first screen
            // size chunk of it).

            if(vb-vt > height)    // screen size chunk
               scrollYDelta -= (screenBottom - vb);
            else                  // entire rect at top
               scrollYDelta -= (screenTop - vt);

            // make sure we aren't scrolling any further than the top our content
            scrollYDelta = Math.max(scrollYDelta, -sv.getScrollY());
           }

         sv.smoothScrollBy(0, scrollYDelta);
         break;
        }

      // Transform coordinates to parent:
      int dy = parent.getTop()-parent.getScrollY();
      vt += dy;
      vb += dy;

      v = parent;
     }
 }
0
Jaromír Adamec

以下は私が使用しているものです:

int amountToScroll = viewToShow.getBottom() - scrollView.getHeight() + ((LinearLayout.LayoutParams) viewToShow.getLayoutParams()).bottomMargin;
// Check to see if scrolling is necessary to show the view
if (amountToScroll > 0){
    scrollView.smoothScrollTo(0, amountToScroll);
}

これにより、ビューの下部の余白を含め、ビューの下部を表示するために必要なスクロール量が取得されます。

0
LukeWaggoner

私の解決策は次のとおりです。

            int[] spinnerLocation = {0,0};
            spinner.getLocationOnScreen(spinnerLocation);

            int[] scrollLocation = {0, 0};
            scrollView.getLocationInWindow(scrollLocation);

            int y = scrollView.getScrollY();

            scrollView.smoothScrollTo(0, y + spinnerLocation[1] - scrollLocation[1]);
0
w4kskl

私の場合、それはEditTextではなく、googleMapです。そして、このように正常に動作します。

    private final void focusCenterOnView(final ScrollView scroll, final View view) {
    new Handler().post(new Runnable() {
        @Override
        public void run() {
            int centreX=(int) (view.getX() + view.getWidth()  / 2);
            int centreY= (int) (view.getY() + view.getHeight() / 2);
            scrollView.smoothScrollBy(centreX, centreY);
        }
    });
}
0
Zin Win Htet