如何通过Delphi编程禁用Android应用主页和后退按钮功能?
- 内容介绍
- 文章标签
- 相关推荐
本文共计230个文字,预计阅读时间需要1分钟。
在Delphi XE7中编写Android平板电脑应用程序时,若想禁用主页键和返回键,防止用户退出应用程序,可以采用以下方法:
1. 在AndroidManifest.xml文件中,添加以下代码以禁用主页键和返回键:xml
我怎样才能在Delphi中实现这一目标?我应该使用哪些物品?我需要包括哪些单位?
从 documentation起Using the Android Device’s Back Button
To make your application handle when users press the Back button on
their Android device, add an event handler to your form for OnKeyUp,
and use the following code within your event handler: In Delphi:
if Key = vkHardwareBack then begin // Do whatever you want to do here Key := 0; // Set Key = 0 if you want to prevent the default action end;
本文共计230个文字,预计阅读时间需要1分钟。
在Delphi XE7中编写Android平板电脑应用程序时,若想禁用主页键和返回键,防止用户退出应用程序,可以采用以下方法:
1. 在AndroidManifest.xml文件中,添加以下代码以禁用主页键和返回键:xml
我怎样才能在Delphi中实现这一目标?我应该使用哪些物品?我需要包括哪些单位?
从 documentation起Using the Android Device’s Back Button
To make your application handle when users press the Back button on
their Android device, add an event handler to your form for OnKeyUp,
and use the following code within your event handler: In Delphi:
if Key = vkHardwareBack then begin // Do whatever you want to do here Key := 0; // Set Key = 0 if you want to prevent the default action end;

