Back to project page TileView.
The source code is released under:
MIT License
If you think the Android project TileView 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.qozix.tileview.markers; //from w w w . ja va2 s . c om import android.content.Context; import android.view.MotionEvent; import android.view.View; import com.qozix.tileview.detail.DetailManager; public class CalloutManager extends MarkerManager { public CalloutManager( Context context, DetailManager detailManager ) { super( context, detailManager ); } private void clear(){ while( getChildCount() > 0 ) { View child = getChildAt( 0 ); removeView( child ); } } @Override public boolean onTouchEvent( MotionEvent event ) { clear(); return false; } }