/** * Event raised when this component is no longer selected for input, such as if the user touches a * different text box. */ public void LostFocus() { EventDispatcher.dispatchEvent(this, "LostFocus"); }
/** Event raised when this component is selected for input, such as by the user touching it. */ public void GotFocus() { EventDispatcher.dispatchEvent(this, "GotFocus"); }
@Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { EventDispatcher.dispatchEvent(this, "Changed", isChecked); }
@Override public void postAnimEvent() { EventDispatcher.dispatchEvent(this, "AnimationMiddle"); }
/** Default Changed event handler. */ public void Changed() { EventDispatcher.dispatchEvent(this, "Changed"); }
@Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { EventDispatcher.dispatchEvent(this, "Click", position); }