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
8f5db143
Commit
8f5db143
authored
Jul 05, 2019
by
Lee Jaebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#34190 作業種別毎に作業を絞り込み機能追加
parent
ff852384
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationListActivity.java
+4
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/OperationGroupMasterListHelper.java
+1
-1
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationListActivity.java
View file @
8f5db143
...
@@ -2071,6 +2071,10 @@ public class OperationListActivity extends ABVUIActivity {
...
@@ -2071,6 +2071,10 @@ public class OperationListActivity extends ABVUIActivity {
if
(
helper
.
getStackSize
()
>
1
)
{
if
(
helper
.
getStackSize
()
>
1
)
{
dialog
.
setListViewAdapter
(
adapter
);
dialog
.
setListViewAdapter
(
adapter
);
String
backToName
=
helper
.
getPrePeekName
();
String
backToName
=
helper
.
getPrePeekName
();
// スマートフォン端末で20文字を超えた場合、20文字まで切り落として後ろに...をつけて表示
if
(
isNormalSize
()
&&
backToName
.
length
()
>
20
)
{
backToName
=
backToName
.
substring
(
0
,
20
)
+
"..."
;
}
dialog
.
setHeaderItemOnClickListener
(
backToName
,
new
View
.
OnClickListener
()
{
dialog
.
setHeaderItemOnClickListener
(
backToName
,
new
View
.
OnClickListener
()
{
@Override
@Override
public
void
onClick
(
View
v
)
{
public
void
onClick
(
View
v
)
{
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/OperationGroupMasterListHelper.java
View file @
8f5db143
...
@@ -95,7 +95,7 @@ public class OperationGroupMasterListHelper extends HierarchyOperationListHelper
...
@@ -95,7 +95,7 @@ public class OperationGroupMasterListHelper extends HierarchyOperationListHelper
removeBreadCrumbs
(
breadCrumbList
.
get
(
breadCrumbList
.
size
()
-
1
));
removeBreadCrumbs
(
breadCrumbList
.
get
(
breadCrumbList
.
size
()
-
1
));
}
}
// 移動した作業種別のIDセット
// 移動した作業種別のIDセット
mAppActivity
.
setOperationGroupMasterId
(
stack
.
get
(
getStackSize
()
-
1
).
parentO
perationGroupMasterId
);
mAppActivity
.
setOperationGroupMasterId
(
stack
.
get
(
getStackSize
()
-
1
).
o
perationGroupMasterId
);
breadCrumbList
.
get
(
breadCrumbList
.
size
()
-
1
);
breadCrumbList
.
get
(
breadCrumbList
.
size
()
-
1
);
if
(
isReload
)
{
if
(
isReload
)
{
...
...
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