Back to project page DivisionByZero.
The source code is released under:
Apache License
If you think the Android project DivisionByZero 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.ggstudios.divisionbyzero; /* w w w.j ava 2 s. co m*/ public class DialogManager extends DrawableCollection<BaseDialog> implements Clickable{ @Override public boolean onTouchEvent(int action, float x, float y) { for(int i = 0; i < len; i++) { if(drawables.get(i).onTouchEvent(action, x, y)) return true; } return false; } }