Android交叉视图不起作用

时间:2015-03-03 21:10:59

标签: android intersection android-framelayout rect

我在Android中设置了两个非常简单的视图:

screenshot

这是我的代码,看看它们是否重叠,但由于某种原因,代码总是返回"不重叠":

私有FrameLayout firstView;     private FrameLayout secondView;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    firstView = (FrameLayout)findViewById(R.id.numberOne);
    secondView = (FrameLayout)findViewById(R.id.numberTwo);

    if (containsView(secondView, firstView)) {
        Toast.makeText(this, "IS overlapping", Toast.LENGTH_LONG).show();
    } else {
        Toast.makeText(this, "IS NOT overlapping", Toast.LENGTH_LONG).show();
    }
}


public boolean containsView(View firstView, View secondView){
    int[] pointA = new int[2];
    firstView.getLocationOnScreen(pointA);
    Rect rectA = new Rect(pointA[0], pointA[1], pointA[0] + firstView.getWidth(), pointA[1] + firstView.getHeight());

    int[] pointB = new int[2];
    secondView.getLocationOnScreen(pointB);
    Rect rectB = new Rect(pointB[0], pointB[1], pointB[0] + secondView.getWidth(), pointB[1] + secondView.getHeight());

    return Rect.intersects(rectA, rectB);
}

2 个答案:

答案 0 :(得分:1)

您正在检查视图位置,然后才能测量它们并将其绘制到屏幕上。调用firstView.getWidth可能为0.您可以通过记录来检查它。

添加TreeObserver或类似:secondView.addOnLayoutChangeListener

顺便说一句,我没有检查你的交叉算法是否正确,只通知了你的错误。

答案 1 :(得分:0)

您需要等待Activity自行布局。 您可以使用处理程序:

new Handler().post(new Runnable() {
    @Override
    public void run() {
        containsView(secondView, firstView)     
    }
});

如果你将对containsView的调用放入clicklistener(按钮或其他任何东西),你就没有那个问题,因为布局将在那时完成。