Back to project page andQuery.
The source code is released under:
MIT License
If you think the Android project andQuery listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.codingg.andquery.Animation.xView; //from w w w . j a va 2 s . com import android.content.Context; import android.graphics.Rect; public class xImageView extends android.widget.ImageView { public Rect rect; public xImageView(Context context) { super(context); } public boolean intersectsWith(xImageView xiv2) { return Rect.intersects(rect, xiv2.rect); } }