开发者

What do you do to protect the user from a dangerous button in Android?

I have an app out that involves keeping track of information over time. Part of the app is a reset button. In order to avoid accidental resets, I made that button respond only to long-clicks. However, that approach confused about 20% of my new users, who thought that the reset button must开发者_运维技巧 not be working.

Is there a more intuitive (and standard) way to protect a button from accidental presses? (If not, I can add some sort of custom message to the button I have . . . )


A Thilo said, a confirmation dialog is the standard answer.

This is good reading if you haven't already:

http://www.codinghorror.com/blog/2010/03/the-opposite-of-fitts-law.html

Basically, make it small! Long click is a good answer, but unless there's a "press and hold" label right underneath that, users are going to have trouble - that violates the user model, since users aren't used to having to do that (I probably wouldn't be able to figure it out).

On the iPhone it's fairly standard to have "slide" buttons (like the unlock) for operations like this, since it's much more difficult to accidentally slide. You could implement something similar to that, but it might be overkill for this problem.


Another vote for Thilo and a confirmation dialog. Also Google/Android is trying to get devs to use the long press as a Quick Action UI pattern. See Android Developers Blog entry on Twitter app


All though this is kinda a workaround, it still works.

case R.id.bReset:
long startTime = System.nanoTime();
boolean running = true;
//show dialog with a single button - cancel. Outside the loop. Upon cancel, set cancelled to true.
//You can use DialogFragment or AlertDialog
while(running && !canceled){
    long elapsed = (System.nanoTime() - startTime) / 1000000;
    if(elapsed > securityTime && !canceled) {//set security time to amount of seconds * 1000
        //Dismiss dialog
        //reset
    }
}
break;

From the currently accepted answer:

As Thilo said, a confirmation dialog is the standard answer.

It does not have to be a confirmation dialog, but if accidental press the user should have the opportunity to cancel the action while at the same time no further action is required if the user wanted to do it.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜