android.gameengine.icadroids.forms
Class ViewRemover

java.lang.Object
  extended by android.gameengine.icadroids.forms.ViewRemover
All Implemented Interfaces:
java.lang.Runnable

public class ViewRemover
extends java.lang.Object
implements java.lang.Runnable

Removes views created by the ViewCreator. Don't use this class by yourself! It's used by GameForm to correctly remove views Note: This class must run on the UI thread.

Author:
Bas van der Zandt

Constructor Summary
protected ViewRemover(int layoutID)
          Remove the given view created by ViewCreator
 
Method Summary
 void run()
          run() runs on the UI Thread for one time.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ViewRemover

protected ViewRemover(int layoutID)
Remove the given view created by ViewCreator

Parameters:
layoutID - the layout id that must be deleted
Method Detail

run

public void run()
run() runs on the UI Thread for one time. It handles the correct deletion of the view

Specified by:
run in interface java.lang.Runnable