直播间的聊天组件,用于在您的自有页面接入时使用。需配合 TVULiveRoomServer 完成接入,详见 Demo。
public class TVUCommentListView extends FrameLayout
创建一个 TVUCommentListView
实例。
public TVUCommentListView(@NonNull Context context)
参数
名称 | 类型 | 说明 |
---|---|---|
context | Context | 直播间页面的上下文。 |
说明
TVUCommentListView
实例会在 TVULiveRoomServer 销毁时自行释放资源,无需手动调用释放。
返回值TVUCommentListView
实例。
将 TVUCommentListView
实例与 TVULiveRoomServer 实例进行绑定。 绑定后,TVUCommentListView
实例内部会进行初始化。
public void attachRoomServer(TVULiveRoomServer server)
参数
名称 | 类型 | 说明 |
---|---|---|
server | TVULiveRoomServer | 要绑定的 TVULiveRoomServer 实例。 |
设置是否显示底部的评论输入框。
public void setShowCommentBottomBar(boolean showCommentBottomBar)
参数
名称 | 类型 | 说明 |
---|---|---|
showCommentBottomBar | Boolean | 是否显示底部的评论输入框。
|