我有一个文本字段,我可以在其中输入在服务器上运行的远程Cordova应用程序的URL。
以下是我在手机上运行的本地Cordova应用程序的代码
RemoteCordovaAppUrl = (EditText)findViewById(R.id.RemoteCordovaAppUrl);
String urlString = RemoteCordovaAppUrl.getText().toString();
app.putExtra("appUri", urlString);
startActivity(app);
以下是在服务器上运行的远程Cordova应用程序的代码
if (window.cordova) {
console.log('You are on a cell phone');
} else {
console.log('You are on a browser');
}
如何让远程Cordova知道它在手机上,因此远程Cordova可以使用手机的相机和其他资源。