Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
IMSDK_Demo
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王文龙
IMSDK_Demo
Commits
722de4c9
Commit
722de4c9
authored
Jan 19, 2021
by
王文龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[update]更新kitsdk优化聊天页发送类型枚举
parent
079ccb26
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
build.gradle
app/build.gradle
+1
-1
ContactListFragment.java
.../main/java/com/offcn/imclient/ui/ContactListFragment.java
+2
-2
No files found.
app/build.gradle
View file @
722de4c9
...
...
@@ -94,7 +94,7 @@ dependencies {
implementation
'com.android.support:multidex:1.0.3'
implementation
(
"com.offcn.live:base:2.5.0-s18"
)
implementation
(
"com.offcn.live:imsdk-kit:1.0.0.4
5
"
)
implementation
(
"com.offcn.live:imsdk-kit:1.0.0.4
6
"
)
// DB
implementation
'org.greenrobot:greendao:3.2.2'
...
...
app/src/main/java/com/offcn/imclient/ui/ContactListFragment.java
View file @
722de4c9
...
...
@@ -124,7 +124,7 @@ public class ContactListFragment extends BaseFragment {
}
}
toId
=
stringBuilder
.
toString
();
OIMSDK
.
getInstance
().
startChat
(
getActivity
(),
OIMSendTypeEnum
.
GROUP
,
toId
,
title
,
0
);
OIMSDK
.
getInstance
().
startChat
(
getActivity
(),
OIMSendTypeEnum
.
BATCH
,
toId
,
title
,
0
);
}
else
{
CommonUtils
.
showToast
(
getActivity
(),
"暂无学员"
);
}
...
...
@@ -175,7 +175,7 @@ public class ContactListFragment extends BaseFragment {
}
}
toId
=
stringBuilder
.
toString
();
OIMSDK
.
getInstance
().
startChat
(
getActivity
(),
OIMSendTypeEnum
.
GROUP
,
toId
,
title
,
0
);
OIMSDK
.
getInstance
().
startChat
(
getActivity
(),
OIMSendTypeEnum
.
BATCH
,
toId
,
title
,
0
);
}
else
{
CommonUtils
.
showToast
(
getActivity
(),
"暂无学员"
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment