标题(位于屏幕顶部)和标签(屏幕底部)之间有滚动视图。我想知道ScrollView内部的ImageView是否在手机屏幕窗口完全可见。
答案 0 :(得分:3)
我建议采用以下方式(方法类似于this question中的方法)。
E.g。你有以下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"
)时它看起来会缩放,但实际{ {1}}高度将作为图像的完整高度(ImageView
甚至会滚动),因此可能需要adjustViewBounds。这种行为的原因是ScrollView
doesn't care about layout_width and layout_height of childs。