欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android中再按一次退出提醒实现的两种方法

程序员文章站 2023-11-09 12:19:28
很多应用中都有一个在用户后退的时候显示“再按一次退出”的提醒,这个怎么实现呢?有两种方式 第一种方式(最常用) long waittime = 2000;...

很多应用中都有一个在用户后退的时候显示“再按一次退出”的提醒,这个怎么实现呢?有两种方式

第一种方式(最常用)

 long waittime = 2000; 
 long touchtime = 0; 
 @override
 public boolean onkeydown(int keycode, keyevent event) {
 if(event.getaction() == keyevent.action_down && keyevent.keycode_back == keycode) { 
     long currenttime = system.currenttimemillis(); 
     if((currenttime-touchtime)>=waittime) { 
     //让toast的显示时间和等待时间相同
       toast.maketext(this, "再按一次退出", (int)waittime).show(); 
       touchtime = currenttime; 
     }else { 
       finish(); 
     } 
     return true; 
   } 
   return super.onkeydown(keycode, event); 
 }

第二种方式

重写onbackpressed方法直接监听返回键

 @override
 public void onbackpressed() {
    long currenttime = system.currenttimemillis(); 
    if((currenttime-touchtime)>=waittime) { 
     //让toast的显示时间和等待时间相同
      toast.maketext(this, "再按一次退出", (int)waittime).show(); 
      touchtime = currenttime; 
    }else { 
      finish(); 
    } 
 }

这种方法虽然写法简单,但是这种方法缺只适用于android 2.0以后.

如果你需要同时重写这两个方法,可能要注意一些问题啦!系统先是onkeydown,如果return true了,就不会onbackpressed了

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接