@Target(value=METHOD)
@Retention(value=RUNTIME)
public @interface OnLongClick
OnLongClickListener on the view for each ID
specified.
@OnLongClick(R.id.example) boolean onLongClick() {
Toast.makeText(this, "Long clicked!", Toast.LENGTH_SHORT).show();
return true;
}
Any number of parameters from View.OnLongClickListener.onLongClick(android.view.View) may be
used on the method.View.OnLongClickListener| Modifier and Type | Optional Element and Description |
|---|---|
int[] |
value
View IDs to which the method will be bound.
|