Commit c36e0fe5 by Lee Munkyeong

Merge branch 'communication/#414_board_collaboration' into 'communication/develop'

ボード協業実装

See merge request !148
parents 17680174 076e8c17
......@@ -120,6 +120,8 @@ public interface ABookCommConstants {
Integer AUDIO = 0;
Integer CAMERA = 2;
Integer VIDEO = 3;
Integer DOCUMENT = 4;
Integer BOARD = 5;
}
interface COLLABORATION_JOIN_FLG {
......
......@@ -128,6 +128,7 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity {
private final String VIDEO_COLLABORATION_PAGE_URL = "file:///android_asset/chat/public_new/collaboration_video.html";
private final String VOICE_COLLABORATION_PAGE_URL = "file:///android_asset/chat/public_new/collaboration_voice.html";
private final String DOCUMENT_COLLABORATION_PAGE_URL = "file:///android_asset/chat/public_new/collaboration_documents.html";
private final String WHITE_BOARD_COLLABORATION_PAGE_URL = "file:///android_asset/chat/public_new/collaboration_whiteboard.html";
private final String DEFAULT_CHECKSUM = "0000000000";
//AISDevelop
......@@ -1575,6 +1576,14 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity {
}
});
break;
case 5:
mChatWebView.post(new Runnable() {
@Override
public void run() {
mChatWebView.loadUrl(WHITE_BOARD_COLLABORATION_PAGE_URL);
}
});
break;
default:
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment