build.gradle.kts(或build.gradle)
文件,并在其中增加如下代码,加入对 LiveCoreView 组件的依赖:api("io.trtc.uikit:live-stream-core:latest.release")
api 'io.trtc.uikit:live-stream-core:latest.release'
proguard-rules.pro
文件中添加如下代码:-keep class com.tencent.** { *; }
AndroidManifest.xml
文件,在 application 节点中添加 tools:replace="android:allowBackup"和android:allowBackup="false",覆盖组件内的设置,使用自己的设置。// app/src/main/AndroidManifest.xml<application ...// 添加如下配置覆盖 依赖的 sdk 中的配置android:allowBackup="false" tools:replace="android:allowBackup">
//登录 TUILogin.login(applicationContext, 1400000001, // 请替换为步骤一取到的 SDKAppID "denny", // 请替换为您的 UserID "xxxxxxxxxxx", // 您可以在控制台中计算一个 UserSig 并填在这个位置 object : TUICallback() { override fun onSuccess() { Log.i(TAG, "login success") } override fun onError(errorCode: Int, errorMessage: String) { Log.e(TAG, "login failed, errorCode: $errorCode msg:$errorMessage") } })
//登录TUILogin.login(context,1400000001, // 请替换为步骤一取到的 SDKAppID"denny", // 请替换为您的 UserID"xxxxxxxxxxx", // 您可以在控制台中计算一个 UserSig 并填在这个位置new TUICallback() {@Overridepublic void onSuccess() {Log.i(TAG, "login success");}@Overridepublic void onError(int errorCode, String errorMessage) {Log.e(TAG, "login failed, errorCode: " + errorCode + " msg:" + errorMessage);}});
参数 | 类型 | 说明 |
SDKAppID | int | 在步骤一中的最后一步中您已经获取到,这里不再赘述。 |
UserID | String | 当前用户的 ID,字符串类型,只允许包含英文字母(a-z 和 A-Z)、数字(0-9)、连词符和下划线。 |
userSig | String | 使用 步骤一 的第3步中获取的 SecretKey 对 SDKAppID、UserID 等信息进行加密,就可以得到 UserSig,它是一个鉴权用的票据,用于腾讯云识别当前用户是否能够使用 TRTC 的服务。您可以通过控制台中的 辅助工具 生成一个临时可用的 UserSig。更多信息请参见 如何计算及使用 UserSig。 |
GenerateTestUserSig.genTestSig
函数生成 userSig。该方法中 SDKSecretKey 很容易被反编译逆向破解,一旦您的密钥泄露,攻击者就可以盗用您的腾讯云流量。val livecoreView = LiveCoreView(this)
LiveCoreView liveCoreView = new LiveCoreView(this);
livecoreView.startCamera(true, null)
liveCoreView.startCamera(true, null);
val roomInfo = TUIRoomDefine.RoomInfo() roomInfo.roomId = "123456" livecoreView.startLiveStream(roomInfo, null)livecoreView.startMicrophone(null)
TUIRoomDefine.RoomInfo roomInfo = new TUIRoomDefine.RoomInfo(); roomInfo.roomId = "roomId_123456"; livecoreView.startLiveStream(roomInfo, null);livecoreView.startMicrophone(null);
livecoreView.joinLiveStream("roomId_123456", null)
livecoreView.joinLiveStream("roomId_123456", null);
主播开启直播间开始直播 | 观众加入直播间观看直播 |
|
|
// 设置宫格布局mLiveStreamListView.setLayoutMode(LiveCoreViewDefine.LayoutMode.GRID_LAYOUT, "")// 设置浮窗布局mLiveStreamListView.setLayoutMode(LiveCoreViewDefine.LayoutMode.FLOAT_LAYOUT, "")// 设置自定义布局布局var layoutJson = "{\\"1\\":{\\"backgroundColor\\":4095,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"2\\":{\\"backgroundColor\\":0,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"3\\":{\\"backgroundColor\\":4095,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"4\\":{\\"backgroundColor\\":4095,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"5\\":{\\"backgroundColor\\":4095,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"6\\":{\\"backgroundColor\\":0,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.024,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"7\\":{\\"backgroundColor\\":0,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.024,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.28,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"8\\":{\\"backgroundColor\\":0,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.024,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.28,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.28,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"9\\":{\\"backgroundColor\\":4095,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.024,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.28,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.28,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.024,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]}}";mLiveStreamListView.setLayoutMode(LiveCoreViewDefine.LayoutMode.FREE_LAYOUT, layoutJson)
// 设置宫格布局mLiveStreamListView.setLayoutMode(LiveCoreViewDefine.LayoutMode.GRID_LAYOUT, "");// 设置浮窗布局mLiveStreamListView.setLayoutMode(LiveCoreViewDefine.LayoutMode.FLOAT_LAYOUT, "");// 设置自定义布局布局String layoutJson = "{\\"1\\":{\\"backgroundColor\\":4095,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"2\\":{\\"backgroundColor\\":0,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"3\\":{\\"backgroundColor\\":4095,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"4\\":{\\"backgroundColor\\":4095,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"5\\":{\\"backgroundColor\\":4095,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"6\\":{\\"backgroundColor\\":0,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.024,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"7\\":{\\"backgroundColor\\":0,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.024,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.28,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"8\\":{\\"backgroundColor\\":0,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.024,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.28,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.28,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]},\\"9\\":{\\"backgroundColor\\":4095,\\"viewInfoList\\":[{\\"x\\":0.0,\\"y\\":0.0,\\"width\\":1.0,\\"height\\":-1.0,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.5,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.789333333,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.024,\\"y\\":0.429333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.28,\\"y\\":0.797333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.28,\\"y\\":1.165333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0},{\\"x\\":0.024,\\"y\\":1.533333333,\\"width\\":0.186666666,\\"height\\":0.368,\\"zOrder\\":0,\\"backgroundColor\\":0}]}}";mLiveStreamListView.setLayoutMode(LiveCoreViewDefine.LayoutMode.FREE_LAYOUT, layoutJson);
主播连线中-九宫格布局 | 主播连线中-浮窗布局 | 主播连线中-自定义布局 |
| | |
本页内容是否解决了您的问题?