这是否属于PhoneGap插件的范围?

时间:2013-12-05 17:21:37

标签: ios cordova

我试图通过PhoneGap插件找出我需要的功能是否可行并且没有找到明确的答案。

我只想澄清一下这是否属于插件的范围。

功能将是......

  1. 在webview中,用户触发一个按钮。
  2. 自定义尺寸的相机预览屏幕,未满 屏幕,弹出webview。
  3. 预览显示前置摄像头的视图,除了它 裁剪为自定义尺寸。
  4. 视频会自动开始录制一段时间, 然后停下来。
  5. 一旦视频停止录制,预览屏幕就会消失 电影文件的本地路径将返回到回调。
  6. 这是一个适用于phonegap插件的合理功能吗?

1 个答案:

答案 0 :(得分:3)

是的,您绝对可以将该功能实现为Phonegap插件。

您可以采取的步骤如下:

- Write the native code of the functionality first (Note: You can call and start activities through Phonegap plugin).
- Create a layout (Maybe, something that will overlay the webview with transparent background).
- Use the File API of Phonegap to access the movie file you just captured.