Android:ScrollView内のビューが表示されているかどうかを確認する方法は?


168

ScrollViewシリーズを取り揃えておりViewsます。ビューが現在表示されているかどうか(ビューの一部が現在によって表示されている場合ScrollView)を確認できるようにしたいと思います。私は以下のコードがこれを行うことを期待しますが、意外にもそれはしません:

Rect bounds = new Rect();
view.getDrawingRect(bounds);

Rect scrollBounds = new Rect(scroll.getScrollX(), scroll.getScrollY(), 
        scroll.getScrollX() + scroll.getWidth(), scroll.getScrollY() + scroll.getHeight());

if(Rect.intersects(scrollBounds, bounds))
{
    //is  visible
}

これがどのように機能するのか興味があります。私は同じことをやろうとしていますが、ScrollViewは1つの直接の子しかホストできません。「一連のビュー」は、ScrollView内の別のレイアウトでラップされていますか?それが私のレイアウト方法ですが、私がそれをするとき、ここで与えられた答えのどれも私のために働きません。
Rooster242 2012年

1
はい、一連のビューはLinearLayout内にあります。これは、ScrollViewの1番目の子です。Qberticusの答えは私のために働いた。
ab11

回答:


65

テストするビューではView#getHitRectなくを使用してくださいView#getDrawingRect。明示的に計算View#getDrawingRectするScrollView代わりにで使用できます。

からのコードView#getDrawingRect

 public void getDrawingRect(Rect outRect) {
        outRect.left = mScrollX;
        outRect.top = mScrollY;
        outRect.right = mScrollX + (mRight - mLeft);
        outRect.bottom = mScrollY + (mBottom - mTop);
 }

からのコードView#getHitRect

public void getHitRect(Rect outRect) {
        outRect.set(mLeft, mTop, mRight, mBottom);
}

35
このメソッドはどこで呼び出せばよいですか?
Tooto

3
@Qberticusメソッドを呼び出す方法は?私はそれを使用しており、常にfalseを返しています。お知らせください
KK_07k11A0585

2
正確にこれらのメソッドを呼び出す場所は?
zemaitis

193

これは機能します:

Rect scrollBounds = new Rect();
scrollView.getHitRect(scrollBounds);
if (imageView.getLocalVisibleRect(scrollBounds)) {
    // Any portion of the imageView, even a single pixel, is within the visible window
} else {
    // NONE of the imageView is within the visible window
}

1
完璧に動作します。明確にするため:ビューが完全にまたは部分的に表示されている場合はtrueを返します。falseは、ビューが完全に表示されないことを意味します。
qwertzguy 2013

1
[1]私は取得するには、このコードを使用GridView/ ListView/ GridViewWithHeaderでの作業しますSwipeRefreshLayout
Kartik、2015

なぜこれが機能するのか誰かが説明してくれませんか?getHitRect親座標でgetLocalVisibleRect長方形を返しますが、スクロールビューのローカル座標で長方形を返しますね。
2015

3
これはオーバーラップをカバーしません、子ビューが別の子要素によってオーバーラップされる場合、それはまだtrueを返します
Pradeep

1
はい、Rect.Butのインスタンスが必要ですが、getHitRectが必要です。Rect(0,0-0,0)を使用する場合、違いはありますか?getLocalVisibleRect呼び出しgetGlobalVisibleRect.And Rectがここに設定されていることがわかりますr.set(0、0、width、height);。@ BillMote
chefish

56

ビューが完全に表示されていることを検出する場合:

private boolean isViewVisible(View view) {
    Rect scrollBounds = new Rect();
    mScrollView.getDrawingRect(scrollBounds);

    float top = view.getY();
    float bottom = top + view.getHeight();

    if (scrollBounds.top < top && scrollBounds.bottom > bottom) {
        return true;
    } else {
        return false;
    }
}

6
これが正解です=)私の場合、次のように変更しました:scrollBounds.top <= top && scrollBounds.bottom => bottom
Helton Isac

2
+1ヘルトンビューがスクロールビューの上部または下部に押し付けられている場合、それぞれ<=または> =が必要です
Joe Maher

これを実際にテストしましたか?子として最も単純なレイアウトScrollViewおよびTextViewでは常にfalseを返します。
ファリッド

1
getHitRect()とgetDrawingRect()の違いは何ですか?ご案内
VVB

2
このコードは、ビューがScrollViewコンテナのルートに直接追加された場合にのみ機能します。チャイルドビューなどでチャイルドビューを処理する場合は、ファンヴァンリンの回答を確認してください
thijsonline

12

私の解決策はNestedScrollViewスクロール要素を使用することです:

    final Rect scrollBounds = new Rect();
    scroller.getHitRect(scrollBounds);

    scroller.setOnScrollChangeListener(new NestedScrollView.OnScrollChangeListener() {
        @Override
        public void onScrollChange(NestedScrollView v, int scrollX, int scrollY, int oldScrollX, int oldScrollY) {

            if (myBtn1 != null) {

                if (myBtn1.getLocalVisibleRect(scrollBounds)) {
                    if (!myBtn1.getLocalVisibleRect(scrollBounds)
                            || scrollBounds.height() < myBtn1.getHeight()) {
                        Log.i(TAG, "BTN APPEAR PARCIALY");
                    } else {
                        Log.i(TAG, "BTN APPEAR FULLY!!!");
                    }
                } else {
                    Log.i(TAG, "No");
                }
            }

        }
    });
}

API 23+が必要
SolidSnake

@SolidSnake、別のクラスをインポートする必要はありません。それは正常に動作します
Parth Anjaria

10

getLocalVisibleRectを使用してBill Moteの回答を少し拡張するには、ビューが部分的にしか表示されていないかどうかを確認する必要があります。

Rect scrollBounds = new Rect();
scrollView.getHitRect(scrollBounds);
if (!imageView.getLocalVisibleRect(scrollBounds)
    || scrollBounds.height() < imageView.getHeight()) {
    // imageView is not within or only partially within the visible window
} else {
    // imageView is completely visible
}

6
これは機能しません..部分的に表示されているビューでさえ、完全に表示されていると分類されます
azfar

10

この拡張機能は、完全に表示されているビューを検出するのに役立ちます。
あなたViewが... ofの子の子である場合にも機能しますScrollView(例:ScrollView-> LinearLayout-> ContraintLayout-> ...-> YourView

fun ScrollView.isViewVisible(view: View): Boolean {
    val scrollBounds = Rect()
    this.getDrawingRect(scrollBounds)
    var top = 0f
    var temp = view
    while (temp !is ScrollView){
        top += (temp).y
        temp = temp.parent as View
    }
    val bottom = top + view.height
    return scrollBounds.top < top && scrollBounds.bottom > bottom
}

注意

1)view.getY()そしてview.getX()、x、y値をFIRST PARENTに返します。

2)リンクgetDrawingRectを返す方法の例を次に示します ここに画像の説明を入力してください


ビューがキーボードの下に隠されている場合にメソッドがfalseを返し、これが機能するソリューションが必要でした。ありがとう。
Rahul

8
public static int getVisiblePercent(View v) {
        if (v.isShown()) {
            Rect r = new Rect();
            v.getGlobalVisibleRect(r);
            double sVisible = r.width() * r.height();
            double sTotal = v.getWidth() * v.getHeight();
            return (int) (100 * sVisible / sTotal);
        } else {
            return -1;
        }
    }

2
これは、ab11が要求したものとは異なります。isShown()は可視性フラグのみをチェックし、ビューが画面の可視領域にあるかどうかはチェックしません。
Romain Guy

4
@Romain Guyこのコードは、ビューが画面全体にスクロールされたときにカバーしません。`public static int getVisiblePercent(View v){if(v.isShown()){Rect r = new Rect(); ブールisVisible = v.getGlobalVisibleRect(r); if(isVisible){double sVisible = r.width()* r.height(); double sTotal = v.getWidth()* v.getHeight(); return(int)(100 * sVisible / sTotal); } else {-1を返す; }} else {-1を返す; }} `
chefish 2016年

6

今日も同じ問題に直面しました。グーグルでAndroidのリファレンスを読んでいるときに、この投稿と、代わりに使用してしまったメソッドを見つけました。

public final boolean getLocalVisibleRect (Rect r)

Rectを提供するだけでなく、ビューがまったく表示されるかどうかを示すブール値も提供するのはすばらしいことです。否定的な面では、この方法は文書化されていません:(


1
これは、アイテムがvisibility(true)に設定されているかどうかを通知するだけです。「表示されている」アイテムが実際にビューポート内に表示されているかどうかはわかりません。
Bill Mote

getLocalVisibleRectのコードはあなたの主張をサポートしていません: `public final boolean getLocalVisibleRect(Rect r){final Point offset = mAttachInfo!= null?mAttachInfo.mPoint:new Point(); if(getGlobalVisibleRect(r、offset)){r.offset(-offset.x、-offset.y); // r localをtrueに戻す; } falseを返します。} `
mbafford 2014年

6

Viewはあなたが完全visibleにあるかどうかを検出したい場合は、この方法で試してください:

private boolean isViewVisible(View view) {
    Rect scrollBounds = new Rect();
    mScrollView.getDrawingRect(scrollBounds);
    float top = view.getY();
    float bottom = top + view.getHeight();
    if (scrollBounds.top < top && scrollBounds.bottom > bottom) {
        return true; //View is visible.
    } else {
        return false; //View is NOT visible.
    }
}

厳密に言えば、次の方法でビューの可視性を取得できます。

if (myView.getVisibility() == View.VISIBLE) {
    //VISIBLE
} else {
    //INVISIBLE
}

ビューでの可視性の可能な定数値は次のとおりです。

VISIBLE このビューは表示されます。setVisibility(int)およびandroid:visibilityと共に使用します。

INVISIBLE このビューは非表示ですが、レイアウトのためにスペースを占有します。setVisibility(int)およびandroid:visibilityと共に使用します。

GONE このビューは非表示であり、レイアウトのためにスペースをとりません。setVisibility(int)およびandroid:visibilityと共に使用します。


3
ゆっくり拍手。OPが知りたいのは、ビューの可視性がView#VISIBLEであると仮定して、ビュー自体がスクロールビュー内に表示されるかどうかを知る方法です。
Joao Sousa

1
単純なプロジェクトを確認したところです。レイアウトには子としてScrollViewとTextViewがあります。TextViewが完全に表示されている場合でも、常にfalseを返します。
ファリッド

常にfalseを返します。
Rahul

3

FocusAwareScrollViewビューが表示されたときに通知するを使用できます。

FocusAwareScrollView focusAwareScrollView = (FocusAwareScrollView) findViewById(R.id.focusAwareScrollView);
    if (focusAwareScrollView != null) {

        ArrayList<View> viewList = new ArrayList<>();
        viewList.add(yourView1);
        viewList.add(yourView2);

        focusAwareScrollView.registerViewSeenCallBack(viewList, new FocusAwareScrollView.OnViewSeenListener() {

            @Override
            public void onViewSeen(View v, int percentageScrolled) {

                if (v == yourView1) {

                    // user have seen view1

                } else if (v == yourView2) {

                    // user have seen view2
                }
            }
        });

    }

ここにクラスがあります:

import android.content.Context;
import android.graphics.Rect;
import android.support.v4.widget.NestedScrollView;
import android.util.AttributeSet;
import android.view.View;

import java.util.ArrayList;
import java.util.List;

public class FocusAwareScrollView extends NestedScrollView {

    private List<OnScrollViewListener> onScrollViewListeners = new ArrayList<>();

    public FocusAwareScrollView(Context context) {
        super(context);
    }

    public FocusAwareScrollView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public FocusAwareScrollView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public interface OnScrollViewListener {
        void onScrollChanged(FocusAwareScrollView v, int l, int t, int oldl, int oldt);
    }

    public interface OnViewSeenListener {
        void onViewSeen(View v, int percentageScrolled);
    }

    public void addOnScrollListener(OnScrollViewListener l) {
        onScrollViewListeners.add(l);
    }

    public void removeOnScrollListener(OnScrollViewListener l) {
        onScrollViewListeners.remove(l);
    }

    protected void onScrollChanged(int l, int t, int oldl, int oldt) {
        for (int i = onScrollViewListeners.size() - 1; i >= 0; i--) {
            onScrollViewListeners.get(i).onScrollChanged(this, l, t, oldl, oldt);
        }
        super.onScrollChanged(l, t, oldl, oldt);
    }

    @Override
    public void requestChildFocus(View child, View focused) {
        super.requestChildFocus(child, focused);
    }

    private boolean handleViewSeenEvent(View view, int scrollBoundsBottom, int scrollYOffset,
                                        float minSeenPercentage, OnViewSeenListener onViewSeenListener) {
        int loc[] = new int[2];
        view.getLocationOnScreen(loc);
        int viewBottomPos = loc[1] - scrollYOffset + (int) (minSeenPercentage / 100 * view.getMeasuredHeight());
        if (viewBottomPos <= scrollBoundsBottom) {
            int scrollViewHeight = this.getChildAt(0).getHeight();
            int viewPosition = this.getScrollY() + view.getScrollY() + view.getHeight();
            int percentageSeen = (int) ((double) viewPosition / scrollViewHeight * 100);
            onViewSeenListener.onViewSeen(view, percentageSeen);
            return true;
        }
        return false;
    }

    public void registerViewSeenCallBack(final ArrayList<View> views, final OnViewSeenListener onViewSeenListener) {

        final boolean[] viewSeen = new boolean[views.size()];

        FocusAwareScrollView.this.postDelayed(new Runnable() {
            @Override
            public void run() {

                final Rect scrollBounds = new Rect();
                FocusAwareScrollView.this.getHitRect(scrollBounds);
                final int loc[] = new int[2];
                FocusAwareScrollView.this.getLocationOnScreen(loc);

                FocusAwareScrollView.this.setOnScrollChangeListener(new NestedScrollView.OnScrollChangeListener() {

                    boolean allViewsSeen = true;

                    @Override
                    public void onScrollChange(NestedScrollView v, int x, int y, int oldx, int oldy) {

                        for (int index = 0; index < views.size(); index++) {

                            //Change this to adjust criteria
                            float viewSeenPercent = 1;

                            if (!viewSeen[index])
                                viewSeen[index] = handleViewSeenEvent(views.get(index), scrollBounds.bottom, loc[1], viewSeenPercent, onViewSeenListener);

                            if (!viewSeen[index])
                                allViewsSeen = false;
                        }

                        //Remove this if you want continuous callbacks
                        if (allViewsSeen)
                            FocusAwareScrollView.this.setOnScrollChangeListener((NestedScrollView.OnScrollChangeListener) null);
                    }
                });
            }
        }, 500);
    }
}

1

コトリンウェイ;

スクロールビューのスクロールをリストし、子ビューが画面に表示されている場合にアクションを取得するための拡張。

@SuppressLint("ClickableViewAccessibility")
fun View.setChildViewOnScreenListener(view: View, action: () -> Unit) {
    val visibleScreen = Rect()

    this.setOnTouchListener { _, motionEvent ->
        if (motionEvent.action == MotionEvent.ACTION_MOVE) {
            this.getDrawingRect(visibleScreen)

            if (view.getLocalVisibleRect(visibleScreen)) {
                action()
            }
        }

        false
    }
}

この拡張関数をスクロール可能なビューに使用します

nestedScrollView.setChildViewOnScreenListener(childView) {
               action()
            }

0

私はとても遅いことを知っています。しかし、私には良い解決策があります。以下は、スクロールビューでビューの表示パーセンテージを取得するためのコードスニペットです。

まず、スクロールビューのタッチリスナーを設定して、スクロール停止のコールバックを取得します。

@Override
public boolean onTouch(View v, MotionEvent event) {
    switch ( event.getAction( ) ) {
        case MotionEvent.ACTION_CANCEL:
        case MotionEvent.ACTION_UP:
            new Handler().postDelayed(new Runnable() {
                @Override
                public void run() {
                    if(mScrollView == null){
                        mScrollView = (ScrollView) findViewById(R.id.mScrollView);
                    }
                    int childCount = scrollViewRootChild.getChildCount();

                    //Scroll view location on screen
                    int[] scrollViewLocation = {0,0};
                    mScrollView.getLocationOnScreen(scrollViewLocation);

                    //Scroll view height
                    int scrollViewHeight = mScrollView.getHeight();
                    for (int i = 0; i < childCount; i++){
                        View child = scrollViewRootChild.getChildAt(i);
                        if(child != null && child.getVisibility() == View.VISIBLE){
                            int[] viewLocation = new int[2];
                            child.getLocationOnScreen(viewLocation);
                            int viewHeight = child.getHeight();
                            getViewVisibilityOnScrollStopped(scrollViewLocation, scrollViewHeight,
                                    viewLocation, viewHeight, (String) child.getTag(), (childCount - (i+1)));
                        }
                    }
                }
            }, 150);
            break;
    }
    return false;
}

上記のコードスニペットでは、スクロールビューのタッチイベントのコールバックを取得し、150ミリ秒後にランナブルをポストします(必須ではありません)。その実行可能ファイルでは、画面上のスクロールビューの位置とスクロールビューの高さを取得します。次に、スクロールビューの直接の子ビューグループインスタンスを取得し、子の数を取得します。私の場合、スクロールビューの直接の子はscrollViewRootChildという名前のLinearLayoutです。次に、scrollViewRootChildのすべての子ビューを繰り返します。上記のコードスニペットでは、viewLocationという名前の整数配列で画面上の子の位置を取得し、変数の名前viewHeightでビューの高さを取得しています。次に、プライベートメソッドgetViewVisibilityOnScrollStoppedを呼び出しました。ドキュメントを読むことで、このメソッドの内部動作を理解できます。

/**
 * getViewVisibilityOnScrollStopped
 * @param scrollViewLocation location of scroll view on screen
 * @param scrollViewHeight height of scroll view
 * @param viewLocation location of view on screen, you can use the method of view claas's getLocationOnScreen method.
 * @param viewHeight height of view
 * @param tag tag on view
 * @param childPending number of views pending for iteration.
 */
void getViewVisibilityOnScrollStopped(int[] scrollViewLocation, int scrollViewHeight, int[] viewLocation, int viewHeight, String tag, int childPending) {
    float visiblePercent = 0f;
    int viewBottom = viewHeight + viewLocation[1]; //Get the bottom of view.
    if(viewLocation[1] >= scrollViewLocation[1]) {  //if view's top is inside the scroll view.
        visiblePercent = 100;
        int scrollBottom = scrollViewHeight + scrollViewLocation[1];    //Get the bottom of scroll view 
        if (viewBottom >= scrollBottom) {   //If view's bottom is outside from scroll view
            int visiblePart = scrollBottom - viewLocation[1];  //Find the visible part of view by subtracting view's top from scrollview's bottom  
            visiblePercent = (float) visiblePart / viewHeight * 100;
        }
    }else{      //if view's top is outside the scroll view.
        if(viewBottom > scrollViewLocation[1]){ //if view's bottom is outside the scroll view
            int visiblePart = viewBottom - scrollViewLocation[1]; //Find the visible part of view by subtracting scroll view's top from view's bottom
            visiblePercent = (float) visiblePart / viewHeight * 100;
        }
    }
    if(visiblePercent > 0f){
        visibleWidgets.add(tag);        //List of visible view.
    }
    if(childPending == 0){
        //Do after iterating all children.
    }
}

このコードの改善を感じたら貢献してください。


0

私はJavaの答えのうち2つ(@ bill-mote https://stackoverflow.com/a/12428154/3686125と@ denys-vasylenko https://stackoverflow.com/a/25528434/3686125)の組み合わせを実装することになりました標準の垂直方向のScrollViewまたはHorizo​​ntalScrollViewコントロールをサポートするKotlin拡張機能のセットとしての私のプロジェクト。

私はこれらをExtensions.ktという名前のKotlinファイルに投げました。クラスはなく、メソッドだけです。

これらを使用して、ユーザーがプロジェクトのさまざまなスクロールビューでスクロールを停止したときにスナップするアイテムを決定しました。

fun View.isPartiallyOrFullyVisible(horizontalScrollView: HorizontalScrollView) : Boolean {
    @Suppress("CanBeVal") var scrollBounds = Rect()
    horizontalScrollView.getHitRect(scrollBounds)
    return getLocalVisibleRect(scrollBounds)
}

fun View.isPartiallyOrFullyVisible(scrollView: ScrollView) : Boolean {
    @Suppress("CanBeVal") var scrollBounds = Rect()
    scrollView.getHitRect(scrollBounds)
    return getLocalVisibleRect(scrollBounds)
}

fun View.isFullyVisible(horizontalScrollView: HorizontalScrollView) : Boolean {
    @Suppress("CanBeVal") var scrollBounds = Rect()
    horizontalScrollView.getDrawingRect(scrollBounds)
    val left = x
    val right = left + width
    return scrollBounds.left < left && scrollBounds.right > right
}

fun View.isFullyVisible(scrollView: ScrollView) : Boolean {
    @Suppress("CanBeVal") var scrollBounds = Rect()
    scrollView.getDrawingRect(scrollBounds)
    val top = y
    val bottom = top + height
    return scrollBounds.top < top && scrollBounds.bottom > bottom
}

fun View.isPartiallyVisible(horizontalScrollView: HorizontalScrollView) : Boolean = isPartiallyOrFullyVisible(horizontalScrollView) && !isFullyVisible(horizontalScrollView)
fun View.isPartiallyVisible(scrollView: ScrollView) : Boolean = isPartiallyOrFullyVisible(scrollView) && !isFullyVisible(scrollView)

使用例、scrollviewのLinearLayout子およびログ出力を反復処理する:

val linearLayoutChild: LinearLayout = getChildAt(0) as LinearLayout
val scrollView = findViewById(R.id.scroll_view) //Replace with your scrollview control or synthetic accessor
for (i in 0 until linearLayoutChild.childCount) {
    with (linearLayoutChild.getChildAt(i)) {
        Log.d("ScrollView", "child$i left=$left width=$width isPartiallyOrFullyVisible=${isPartiallyOrFullyVisible(scrollView)} isFullyVisible=${isFullyVisible(scrollView)} isPartiallyVisible=${isPartiallyVisible(scrollView)}")
    }
}

1
なぜvarideヒントを使用して抑制しているのですか?
Filipkowicz

-1

@Qberticusの回答を使用して、ポイントは大きかったのですが、スクロールビューが呼び出されてスクロールされたときに@Qberticusの回答がトリガーされるかどうかを確認するためにコードの束をコンパイルしました。ソーシャルネットワークに動画が含まれているため、画面にビューが描画されたときに、facebookやInstagramなどの同じアイデアの動画を再生します。これがコードです:

mainscrollview.getViewTreeObserver().addOnScrollChangedListener(new OnScrollChangedListener() {

                    @Override
                    public void onScrollChanged() {
                        //mainscrollview is my scrollview that have inside it a linearlayout containing many child views.
                        Rect bounds = new Rect();
                         for(int xx=1;xx<=postslayoutindex;xx++)
                         {

                          //postslayoutindex is the index of how many posts are read.
                          //postslayoutchild is the main layout for the posts.
                        if(postslayoutchild[xx]!=null){

                            postslayoutchild[xx].getHitRect(bounds);

                        Rect scrollBounds = new Rect();
                        mainscrollview.getDrawingRect(scrollBounds);

                        if(Rect.intersects(scrollBounds, bounds))
                        {
                            vidPreview[xx].startPlaywithoutstoppping();
                         //I made my own custom video player using textureview and initialized it globally in the class as an array so I can access it from anywhere.
                        }
                        else
                        {

                        }


                        }
                    }
                    }
                });
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.