Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abook_check
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_android
abook_check
Commits
ef33e662
Commit
ef33e662
authored
Jun 08, 2021
by
Lee Munkyeong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
全協業終了対応
parent
7362826b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/ChatWebViewActivity.java
+3
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationRelatedContentActivity.java
+1
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/view/FullscreenableChromeClient.java
+1
-1
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/ChatWebViewActivity.java
View file @
ef33e662
...
...
@@ -352,11 +352,13 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity {
// WebView内のAlert Dialogを処理する
@Override
public
boolean
onJsAlert
(
WebView
view
,
String
url
,
String
message
,
final
JsResult
result
)
{
if
(
mChatWebView
.
getUrl
()
!=
null
&&
mChatWebView
.
getUrl
().
equals
(
COLLABORATION_PAGE_URL
))
{
mChatWebView
.
loadUrl
(
"javascript:coview_api.HeartBeatUser(globalUserInfo.loginId);"
);
}
if
(
myAlertDialog
!=
null
&&
myAlertDialog
.
isShowing
())
{
result
.
confirm
();
return
true
;
}
if
(
message
.
equals
(
"server error Ocurred"
))
{
message
=
getString
(
R
.
string
.
msg_error_chat_server
);
}
else
if
(
message
.
equals
(
"Disconnected from the server"
))
{
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationRelatedContentActivity.java
View file @
ef33e662
...
...
@@ -310,7 +310,7 @@ public class OperationRelatedContentActivity extends ABVUIActivity {
public
void
run
()
{
final
ABookAlertDialog
nonTargetMeetingContentDialog
=
AlertDialogUtil
.
createAlertDialog
(
OperationRelatedContentActivity
.
this
,
R
.
string
.
app_name
);
nonTargetMeetingContentDialog
.
setCancelable
(
false
);
nonTargetMeetingContentDialog
.
setMessage
(
isCollaboration
?
R
.
string
.
msg_non_target_
meeting
_content
:
R
.
string
.
msg_non_target_meeting_content
);
nonTargetMeetingContentDialog
.
setMessage
(
isCollaboration
?
R
.
string
.
msg_non_target_
collaboration
_content
:
R
.
string
.
msg_non_target_meeting_content
);
nonTargetMeetingContentDialog
.
setPositiveButton
(
R
.
string
.
ok
,
new
DialogInterface
.
OnClickListener
()
{
@Override
public
void
onClick
(
DialogInterface
dialog
,
int
whichButton
)
{
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/view/FullscreenableChromeClient.java
View file @
ef33e662
...
...
@@ -80,7 +80,7 @@ public class FullscreenableChromeClient extends WebChromeClient {
}
else
{
winParams
.
flags
&=
~
bits
;
if
(
mCustomView
!=
null
)
{
mCustomView
.
setSystemUiVisibility
(
View
.
SYSTEM_UI_FLAG_
VISIBLE
);
mCustomView
.
setSystemUiVisibility
(
View
.
SYSTEM_UI_FLAG_
HIDE_NAVIGATION
);
}
}
win
.
setAttributes
(
winParams
);
...
...
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