我的Android应用需要拍照,但相机插件不起作用。当我点击按钮时没有任何反应。
的index.html
<!DOCTYPE html>
<html>
<head>
<title>Capture Photo</title>
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1"/>
<script type="text/javascript" charset="utf-8" src="phonegap.js"></script>
<script type="text/javascript" charset="utf-8">
document.addEventListener("deviceready",onDeviceReady,false);
function onDeviceReady() {
alert("ready");
}
function capturePhoto()
{
navigator.camera.getPicture(onSuccess, onFail, { quality: 50,
destinationType: Camera.DestinationType.FILE_URI });
}
function onSuccess(imageURI) {
var image = document.getElementById('myImage');
image.src = imageURI;
}
function onFail(message) {
alert('Failed because: ' + message);
}
</script>
</head>
<body>
<button onclick="capturePhoto()">Capture</button> <br>
<button onclick="onDeviceReady()">alert</button> <br>
<img id="myImage" src="" />
</body>
</html>
我只添加了第二个按钮来检查按钮是否有效(确实如此)。
config.xml中
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns= "http://www.w3.org/ns/widgets"
xmlns:gap= "http://phonegap.com/ns/1.0"
id= "testaplikacji"
versionCode= "1"
version = "1.0.0" >
<name>Camera</name>
<description>Camera test</description>
<author>Sebastian</author>
<gap:platform name="android" />
<gap:plugin name="org.apache.cordova.dialogs" />
<gap:plugin name="org.apache.cordova.camera" />
<gap:plugin name="cordova-plugin-camera" />
<feature name="Camera">
<param name="android-package" value="org.apache.cordova.camera.CameraLauncher" />
</feature>
<access origin="*"/>
<gap:config-file platform="android" parent="/manifest" mode="add" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.CAMERA"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</gap:config-file>
</widget>
我尝试使用和不使用权限。我尝试了不同的插件。我尝试了这个要点:https://gist.github.com/dhavaln/2238017
还有本教程的代码: https://www.youtube.com/watch?v=KlBfmHDZjmg
没有任何作用。我浪费了很多时间试图让这个工作。请帮我。
答案 0 :(得分:1)
我已经使用phonegap构建服务器对您进行了测试,并且在您的html文件中使用此最小config.xml
文件时,您提供的HTML代码可以正常工作(从我的其他答案进行更改)。另外,请确保不要将Zip存档中的phonegap.js
上传到构建服务器。在构建期间将自动添加额外的一个。
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.stackoverflow.example.SO37227132"
versionCode = "10"
version = "1.0.0" >
<!-- versionCode is optional and Android only -->
<name>PhoneGap Example</name>
<description>
An example for phonegap build docs.
</description>
<author href="https://build.phonegap.com" email="support@phonegap.com">
Hardeep Shoker
</author>
<platform name="android" />
<plugin name="org.apache.cordova.camera" source="pgb" />
</widget>
答案 1 :(得分:0)
您在两个不同的位置使用名为image的变量。但这些是两个不同的变量。在onSuccess函数中获取所需的图像参考。
function onSuccess(imageURI)
{
var image = document.getElementById('myImage');
image.src = imageURI;
}