Apache Cordova - 检测Android Home按钮

时间:2016-07-16 05:04:35

标签: angularjs cordova cordova-plugins ngcordova

我有一个使用angularjs的项目,我使用Cordova构建项目到Android应用程序。在我的项目中,我添加了ngCordova,我希望在客户端单击设备中的主页按钮时使用事件。

我恳求http://ngcordova.com/docs/plugins/,但我找不到任何我需要的东西。有人可以帮助我,或者有任何想法我可以使用吗?

1 个答案:

答案 0 :(得分:5)

主页按钮按下cordova没有任何事件。您可以检测应用程序恢复和暂停事件:

String url = "http://yourserver";
File file = new File(Environment.getExternalStorageDirectory().getAbsolutePath(),
    "yourfile");
try {
HttpClient httpclient = new DefaultHttpClient();

HttpPost httppost = new HttpPost(url);

InputStreamEntity reqEntity = new InputStreamEntity(
        new FileInputStream(file), -1);
reqEntity.setContentType("binary/octet-stream");
reqEntity.setChunked(true); // Send in multiple parts if needed
httppost.setEntity(reqEntity);
HttpResponse response = httpclient.execute(httppost);
//Do something with response...

} catch (Exception e) {
// show error
}

可以在official cordova documentation

上找到更多信息