7

标题(屏幕顶部)和选项卡(屏幕底部)之间有滚动视图。我想知道 ScrollView 内的 ImageView 在手机屏幕窗口上是否完全可见。

在此处输入图像描述

4

1 回答 1

3

我建议采用以下方式(该方法类似于此问题中的一种)。

例如,您有以下 xml(我不确定什么是标题和选项卡,所以它们被遗漏了):

<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:id="@+id/scroller">
        <ImageView
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:layout_gravity="center"
            android:id="@+id/image"
            android:src="@drawable/image001"
            android:scaleType="fitXY" />
</ScrollView>

然后活动可能如下所示:

public class MyActivity extends Activity {

    private static final String TAG = "MyActivity";

    private ScrollView mScroll = null;
    private ImageView mImage = null;

    private ViewTreeObserver.OnGlobalLayoutListener mLayoutListener = new ViewTreeObserver.OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
            final Rect imageRect = new Rect(0, 0, mImage.getWidth(), mImage.getHeight());
            final Rect imageVisibleRect = new Rect(imageRect);

            mScroll.getChildVisibleRect(mImage, imageVisibleRect, null);

            if (imageVisibleRect.height() < imageRect.height() ||
                    imageVisibleRect.width() < imageRect.width()) {
                Log.w(TAG, "image is not fully visible");
            } else {
                Log.w(TAG, "image is fully visible");
            }

            mScroll.getViewTreeObserver().removeOnGlobalLayoutListener(mLayoutListener);
        }
    };

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        // Show the layout with the test view
        setContentView(R.layout.main);

        mScroll = (ScrollView) findViewById(R.id.scroller);
        mImage = (ImageView) findViewById(R.id.image);

        mScroll.getViewTreeObserver().addOnGlobalLayoutListener(mLayoutListener);
    }
}

如果图像很小,它将记录:图像完全可见。

但是,您应该注意以下不一致(根据我的理解):如果您有大图像,但是android:layout_width="wrap_content"当它看起来缩放时对其进行缩放(例如您设置),但实际ImageView高度将作为图像的全高(ScrollView甚至会滚动),因此可能需要adjustViewBounds 。这种行为的原因是FrameLayout 不关心 childs 的 layout_width 和 layout_height

于 2013-07-23T12:15:43.887 回答