实现Android 滑动退出Activity的功能
程序员文章站
2023-12-14 12:33:58
实现android 滑动退出activity的功能
android向右滑动,退出activity
//右滑删除
compile 'com.jude:...
实现android 滑动退出activity的功能
android向右滑动,退出activity
//右滑删除 compile 'com.jude:swipebackhelper:3.1.2'
然后在baseactivity中添加代码:
实现代码:
swipebackhelper.oncreate(this); swipebackhelper.getcurrentpage(this) .setswipebackenable(true) .setswipesensitivity(0.5f) .setswiperelateenable(true) .setswiperelateoffset(300); @override protected void ondestroy() { swipebackhelper.ondestroy(this); super.ondestroy(); }
以上就是android 滑动退出应用程序的实例,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!