timroes / SwipeToDismissUndoList

An Android library to enable swipe to dismiss and undo functionality on ListViews.
250 stars 72 forks source link

AutoHideDelay doesn't work #25

Closed mandomi closed 10 years ago

mandomi commented 10 years ago

in my app, i change mAutoHideDelay to 3000 but it doesn't work and undo_popup never dismiss

timroes commented 10 years ago

Hei, have you touched the screen before you count down the 3s. The delay will start when the user first touched the screen (to make sure, she is aware of the popup dialog). If you don't want this feature, you can switch it off with setRequireTouchBeforeDismiss(false);

Did this help you?

mandomi commented 10 years ago

it helped thank you