Example #1
0
 /**
  * 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");
 }
Example #2
0
 /** Event raised when this component is selected for input, such as by the user touching it. */
 public void GotFocus() {
   EventDispatcher.dispatchEvent(this, "GotFocus");
 }
Example #3
0
 @Override
 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
   EventDispatcher.dispatchEvent(this, "Changed", isChecked);
 }
Example #4
0
 @Override
 public void postAnimEvent() {
   EventDispatcher.dispatchEvent(this, "AnimationMiddle");
 }
Example #5
0
 /** Default Changed event handler. */
 public void Changed() {
   EventDispatcher.dispatchEvent(this, "Changed");
 }
Example #6
0
  @Override
  public void onItemClick(AdapterView<?> parent, View view, int position, long id) {

    EventDispatcher.dispatchEvent(this, "Click", position);
  }