Android 添加 在清单中
我很困惑在哪里添加
使用功能
使用清单中的 标签。 我正在我的应用程序中使用相机。我添加了权限,但我很困惑在哪里添加功能才能使用前置摄像头。你能帮忙吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在
< sustest>
标签下添加它:Add this under
<manifest>
tag, like this:
- 声明应用程序使用的单个硬件或软件功能。声明的目的是告知任何外部实体您的应用程序所依赖的硬件和软件功能集。该元素提供了一个 required 属性,可让您指定应用程序是否需要且在没有声明的功能的情况下无法运行,或者是否希望拥有该功能但在没有该功能的情况下也可以运行。由于功能支持可能因 Android 设备而异,因此该元素在让应用程序描述其使用的设备变量功能方面发挥着重要作用。
阅读更多内容
如下是访问
设备前置摄像头
的示例代码需要以下权限
有关更多信息,请阅读
Google android开发者API文档
相机,Camera.CameraInfo<uses-feature>
- Declares a single hardware or software feature that is used by the application.The purpose of a declaration is to inform any external entity of the set of hardware and software features on which your application depends. The element offers a required attribute that lets you specify whether your application requires and cannot function without the declared feature, or whether it prefers to have the feature but can function without it. Because feature support can vary across Android devices, the element serves an important role in letting an application describe the device-variable features that it uses.
read for more
Below is sample code to access
Device Front Camera
Need following permissions
For more please read
Google android developer API doc
Camera, Camera.CameraInfo在清单标签下添加此内容:
Add this under manifest tag:
像这样编写标签顺序
write tags order like this