Bonjour,
Quelle est la duree d'un clic long sur Android ? Y a-t-il une constante pour ca quelque part ? Je n'ai rien trouve a ce sujet...
Merci !
Bonjour,
Quelle est la duree d'un clic long sur Android ? Y a-t-il une constante pour ca quelque part ? Je n'ai rien trouve a ce sujet...
Merci !
Bonjour,
http://developer.android.com/guide/t...ui-events.html
Le long click est d'une seconde .onClick()
From View.OnClickListener. This is called when the user either touches the item (when in touch mode), or focuses upon the item with the navigation-keys or trackball and presses the suitable "enter" key or presses down on the trackball.
onLongClick()
From View.OnLongClickListener. This is called when the user either touches and holds the item (when in touch mode), or focuses upon the item with the navigation-keys or trackball and presses and holds the suitable "enter" key or presses and holds down on the trackball (for one second).
Merci Feanorin![]()
Partager