is there a default back key(on device) listener in android?(android中是否有默认的后退键(在设备上)侦听器?)
问题描述
我有两个活动 A 和 B.当我单击 A 中将显示 B 的按钮时.当我单击 B 中的按钮时,它返回到 A.我在 finish() 方法之后设置了 overridePendingTransition 方法.它工作正常.但如果当前的活动是 B.那时我点击设备中的默认后退按钮.它显示从右到左的过渡以显示 Activity A.
I am having two activities A and B. when i click the button in A that will shows B. when i click the Button in B it backs to A. i had set the overridePendingTransition method after the finish() method. it works properly. but in case the current Activity is B. on that time i click the default back button in the device. it shows the right to left transition to show the Activity A.
如何在设备上收听默认返回键?
How i can listen that Default back key on device?
Log.v(TAG, "back pressed");
finish();
overridePendingTransition(R.anim.slide_top_to_bottom, R.anim.hold);
推荐答案
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) {
// do something on back.
return true;
}
return super.onKeyDown(keyCode, event);
}
以下链接是Android开发者自己编写的关于如何处理返回键事件的详细说明:
The following link is a detailed explanation on how to handle back key events, written by the Android developers themselves:
使用返回键
这篇关于android中是否有默认的后退键(在设备上)侦听器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:android中是否有默认的后退键(在设备上)侦听器?
基础教程推荐
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01