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
f4c56812
Commit
f4c56812
authored
Apr 05, 2019
by
Lee Jaebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
会議室の司会者でWebView表示時、履歴ボタン非表示
WebViewで昇格申請しても、司会者でOKボタンタップ時、エラー修正
parent
adcea12a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
13 deletions
+6
-13
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ActivityHandlingHelper.java
+1
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLWebViewActivity.java
+2
-6
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLXWalkWebViewActivity.java
+3
-6
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ActivityHandlingHelper.java
View file @
f4c56812
...
...
@@ -1278,7 +1278,7 @@ public class ActivityHandlingHelper extends ABookHelper implements RemoteObserve
public
void
onClick
(
DialogInterface
dialog
,
int
whichButton
)
{
// 許可する場合
try
{
// 承認する前にマーキングモード終了メッセージを送信
if
(((
ContentViewActivity
)
contentViewActivity
).
isMarkingStatus
())
{
if
(
contentViewActivity
instanceof
ContentViewActivity
&&
((
ContentViewActivity
)
contentViewActivity
).
isMarkingStatus
())
{
JSONObject
jsonMarkingInvisible
=
new
JSONObject
();
jsonMarkingInvisible
.
put
(
MeetingManager
.
MARKING_ACTION
,
MeetingManager
.
MARKING_ACTION_END
);
meetingManager
.
sendWs
(
MeetingManager
.
CMD_MARKING
,
contentViewActivity
.
getContentId
(),
contentViewActivity
.
getCurrentPageNumber
(),
null
,
jsonMarkingInvisible
);
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLWebViewActivity.java
View file @
f4c56812
...
...
@@ -607,12 +607,8 @@ public class HTMLWebViewActivity extends ParentWebViewActivity {
}
}
else
{
closeButton
.
setVisibility
(
View
.
VISIBLE
);
if
(
objectId
==
-
1
)
{
historyListBtn
.
setVisibility
(
View
.
VISIBLE
);
}
else
{
historyListBtn
.
setVisibility
(
View
.
GONE
);
subMenuBtn
.
setVisibility
(
View
.
GONE
);
}
historyListBtn
.
setVisibility
(
View
.
GONE
);
subMenuBtn
.
setVisibility
(
View
.
GONE
);
mBtnRemoteStart
.
setVisibility
(
View
.
GONE
);
if
(
meetingManager
.
isSendable
())
{
// 会議室退室ボタン表示
exitMeetingBtn
.
setVisibility
(
View
.
VISIBLE
);
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLXWalkWebViewActivity.java
View file @
f4c56812
...
...
@@ -649,12 +649,9 @@ public class HTMLXWalkWebViewActivity extends ParentWebViewActivity {
}
}
else
{
closeButton
.
setVisibility
(
View
.
VISIBLE
);
if
(
objectId
==
-
1
)
{
historyListBtn
.
setVisibility
(
View
.
VISIBLE
);
}
else
{
historyListBtn
.
setVisibility
(
View
.
GONE
);
subMenuBtn
.
setVisibility
(
View
.
GONE
);
}
historyListBtn
.
setVisibility
(
View
.
GONE
);
subMenuBtn
.
setVisibility
(
View
.
GONE
);
mBtnRemoteStart
.
setVisibility
(
View
.
GONE
);
if
(
meetingManager
.
isSendable
())
{
// 会議室退室ボタン表示
exitMeetingBtn
.
setVisibility
(
View
.
VISIBLE
);
...
...
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