feat:完善公聊页细节实现

feat:对接公聊ID、发布头条、获取头条接口
This commit is contained in:
max
2024-05-07 19:20:00 +08:00
parent 378ea3802d
commit edb8c962cd
25 changed files with 545 additions and 101 deletions

View File

@@ -10,8 +10,8 @@
<FrameLayout
android:id="@+id/switchLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_centerVertical="true"
android:layout_marginStart="@dimen/bottom_component_margin_horizontal"
android:layout_marginEnd="@dimen/bottom_component_margin_horizontal">

View File

@@ -0,0 +1,15 @@
package com.netease.nim.uikit.api.model
import java.lang.Exception
class NimException : Exception {
var code: Int = 0
constructor(code: Int) : super() {
this.code = code
}
constructor(message: String?) : super(message)
constructor(message: String?, cause: Throwable?) : super(message, cause)
constructor(cause: Throwable?) : super(cause)
}