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
0ff22555
Commit
0ff22555
authored
Mar 25, 2019
by
Jeong Gilmo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#32861 作業情報追加(Android)
- CMSと連携の修正
parent
dd7aa92d
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
11 deletions
+12
-11
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
+1
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ActivityHandlingHelper.java
+4
-3
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLWebViewActivity.java
+0
-7
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ParentWebViewActivity.java
+7
-0
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
View file @
0ff22555
...
...
@@ -932,8 +932,8 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
ABookKeys
.
CMD_DELETE_TASK_REPORT
,
ABookKeys
.
CMD_CANCEL_TASK_REPORT
)
&&
!
mAddReport
&&
!
isError
)
{
operationFinish
();
}
else
{
afterABookCheckApi
(
mCmd
,
mTaskKey
,
0
,
""
,
null
,
isOperationPdf
());
if
(!
isError
)
{
// エラーがない場合のみ画面遷移処理を行う。
afterABookCheckApi
(
mCmd
,
mTaskKey
,
0
,
""
,
null
,
isOperationPdf
());
doneProcess
();
}
}
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ActivityHandlingHelper.java
View file @
0ff22555
...
...
@@ -1601,8 +1601,8 @@ public class ActivityHandlingHelper extends ABookHelper implements RemoteObserve
if
(!
currentActivityStack
.
isEmpty
())
{
for
(
final
ABVAuthenticatedActivity
activity
:
currentActivityStack
)
{
final
String
scriptUrl
=
url
;
if
(
activity
instanceof
HTML
WebViewActivity
)
{
((
HTML
WebViewActivity
)
activity
).
callViewLoadUrl
(
scriptUrl
);
if
(
activity
instanceof
Parent
WebViewActivity
)
{
((
Parent
WebViewActivity
)
activity
).
callViewLoadUrl
(
scriptUrl
);
}
}
}
...
...
@@ -1631,12 +1631,13 @@ public class ActivityHandlingHelper extends ABookHelper implements RemoteObserve
}
}
// ActivityであるClassからCheckOZDViewActivityを確認してContextの値を変更する。
public
Context
selectedAtivityContext
()
{
Context
context
=
null
;
if
(!
currentActivityStack
.
isEmpty
())
{
for
(
final
ABVAuthenticatedActivity
activity
:
currentActivityStack
)
{
if
(
activity
instanceof
CheckOZDViewActivity
)
{
context
=
((
CheckOZDViewActivity
)
activity
)
;
context
=
activity
;
return
context
;
}
}
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLWebViewActivity.java
View file @
0ff22555
...
...
@@ -722,11 +722,4 @@ public class HTMLWebViewActivity extends ParentWebViewActivity {
}
mUploadMessage
=
null
;
}
// #32861 start
// 上位のClassからHTML側のコールを行うための処理
public
void
callViewLoadUrl
(
String
url
)
{
webViewLoadUrl
(
url
);
}
// #32861 end
}
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ParentWebViewActivity.java
View file @
0ff22555
...
...
@@ -401,4 +401,11 @@ public class ParentWebViewActivity extends ABVContentViewActivity {
return
null
;
}
// #32861 start
// 上位のClassからHTML側のコールを行うための処理
public
void
callViewLoadUrl
(
String
url
)
{
webViewLoadUrl
(
url
);
}
// #32861 end
}
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