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
e1701f0c
Commit
e1701f0c
authored
Feb 07, 2023
by
Kazuyuki Hida
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ダッシュボードのヘルプ表示を実装
parent
fa2b2b86
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/DashboardActivity.java
+9
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/HelpActivity.java
+6
-0
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/DashboardActivity.java
View file @
e1701f0c
...
@@ -66,6 +66,7 @@ import static jp.agentec.abook.abv.bl.acms.client.json.OperationDataJSON.TaskRep
...
@@ -66,6 +66,7 @@ import static jp.agentec.abook.abv.bl.acms.client.json.OperationDataJSON.TaskRep
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationDataJSON
.
TaskReportInfo
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationDataJSON
.
TaskReportInfo
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationListJSON
.
OperationList
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationListJSON
.
OperationList
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationListJSON
.
OperationName
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationListJSON
.
OperationName
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
common
.
Constant
.
HelpViewType
.
OperationDashboard
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
common
.
Constant
.
ReportType
.
RoutineTask
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
common
.
Constant
.
ReportType
.
RoutineTask
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
common
.
constant
.
ABookKeys
.
CMD_GET_REPORT_LIST
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
common
.
constant
.
ABookKeys
.
CMD_GET_REPORT_LIST
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
common
.
constant
.
ABookKeys
.
CMD_GET_REPORT_STATUS_COUNT
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
common
.
constant
.
ABookKeys
.
CMD_GET_REPORT_STATUS_COUNT
;
...
@@ -95,6 +96,14 @@ public class DashboardActivity extends OperationActivity {
...
@@ -95,6 +96,14 @@ public class DashboardActivity extends OperationActivity {
}
}
});
});
ImageButton
helpButton
=
findViewById
(
R
.
id
.
btn_help
);
helpButton
.
setOnClickListener
(
new
View
.
OnClickListener
()
{
@Override
public
void
onClick
(
View
v
)
{
showHelpViewDialog
(
OperationDashboard
);
}
});
progress
=
findViewById
(
R
.
id
.
refresh_prog
);
progress
=
findViewById
(
R
.
id
.
refresh_prog
);
createWebView
();
createWebView
();
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/HelpActivity.java
View file @
e1701f0c
...
@@ -259,6 +259,12 @@ public class HelpActivity extends ABVUIActivity {
...
@@ -259,6 +259,12 @@ public class HelpActivity extends ABVUIActivity {
mMainDescription
=
PatternStringUtil
.
patternToString
(
getApplicationContext
(),
mMainDescription
=
PatternStringUtil
.
patternToString
(
getApplicationContext
(),
R
.
string
.
msg_help_dashboard
,
R
.
string
.
msg_help_dashboard
,
getUserPref
(
AppDefType
.
UserPrefKey
.
RESOURCE_PATTERN_TYPE
,
0
));
getUserPref
(
AppDefType
.
UserPrefKey
.
RESOURCE_PATTERN_TYPE
,
0
));
mHelpDisplayInfoList
.
add
(
settingHelpDisplayInfo
(
PatternStringUtil
.
patternToString
(
getApplicationContext
(),
R
.
string
.
msg_help_report_locked
,
getUserPref
(
AppDefType
.
UserPrefKey
.
RESOURCE_PATTERN_TYPE
,
0
)),
R
.
drawable
.
ic_unlock
));
mHelpDisplayInfoList
.
add
(
settingHelpDisplayInfo
(
PatternStringUtil
.
patternToString
(
getApplicationContext
(),
R
.
string
.
msg_help_report_send_back
,
getUserPref
(
AppDefType
.
UserPrefKey
.
RESOURCE_PATTERN_TYPE
,
0
)),
R
.
drawable
.
ic_sendback
));
break
;
break
;
}
}
if
(!(
helpViewTye
==
Constant
.
HelpViewType
.
OperationListDirector
||
helpViewTye
==
Constant
.
HelpViewType
.
OperationListReporter
||
helpViewTye
==
Constant
.
HelpViewType
.
OperationDetail
))
{
if
(!(
helpViewTye
==
Constant
.
HelpViewType
.
OperationListDirector
||
helpViewTye
==
Constant
.
HelpViewType
.
OperationListReporter
||
helpViewTye
==
Constant
.
HelpViewType
.
OperationDetail
))
{
...
...
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