🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## **打开本地摄像头** // anychatSDK is the instance of sdk List<AnyChatCamera> cameras = anychatSDK.getCameras(context);//获取本地摄像头对象列表 AnyChatCamera camera = cameras.get(0);//选择前置摄像头对象 camera.prepare(view,isShowOnTop).open();//打开摄像头 #### 接口说明 打开本地摄像头 #### 接口返回值 无 #### 接口参数简介 | 名称 |类型 |说明 |是否必须 | | --- | --- | --- | --- | | context| Context | 上下文 |是 | | view | ViewGroup | surfaceview的父控件| 是 | | isShowOnTop | boolean | 是否显示在顶层| 是 |