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
9b46c888
Commit
9b46c888
authored
May 29, 2019
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #33796 【SATO Android1.0.0】作業一覧リスト表示にNewボタン表示が更新されない
parent
136c8a58
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/adapter/OperationListAdapter.java
+4
-7
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/adapter/OperationListAdapter.java
View file @
9b46c888
...
@@ -116,19 +116,16 @@ public class OperationListAdapter extends AbstractOperationAdapter {
...
@@ -116,19 +116,16 @@ public class OperationListAdapter extends AbstractOperationAdapter {
// 同期ボタン表示・非表示
// 同期ボタン表示・非表示
if
(
operationDto
.
contentId
!=
null
&&
operationDto
.
contentId
!=
0
)
{
if
(
operationDto
.
contentId
!=
null
&&
operationDto
.
contentId
!=
0
)
{
if
(
holder
.
ivSync
.
getVisibility
()
==
View
.
INVISIBLE
)
{
if
(
operationDto
.
needSyncFlg
)
{
if
((
operationDto
.
needSyncFlg
))
{
holder
.
ivSync
.
setVisibility
(
View
.
VISIBLE
);
holder
.
ivSync
.
setVisibility
(
View
.
VISIBLE
);
}
else
{
}
else
{
holder
.
ivSync
.
setVisibility
(
View
.
INVISIBLE
);
holder
.
ivSync
.
setVisibility
(
View
.
INVISIBLE
);
}
}
}
}
else
{
}
else
{
// プロジェクトのコンテンツが存在しない場合は、同期ボタンを非活性化する
// プロジェクトのコンテンツが存在しない場合は、同期ボタンを非活性化する
holder
.
ivSync
.
setVisibility
(
View
.
INVISIBLE
);
holder
.
ivSync
.
setVisibility
(
View
.
INVISIBLE
);
}
}
if
(
operationDto
.
operationType
==
OperationType
.
PANO
)
{
if
(
operationDto
.
operationType
==
OperationType
.
PANO
)
{
if
(
operationDto
.
enableReportEdit
==
Constant
.
EnableReportEdit
.
NO
)
{
if
(
operationDto
.
enableReportEdit
==
Constant
.
EnableReportEdit
.
NO
)
{
holder
.
ivPanoEdit
.
setVisibility
(
View
.
INVISIBLE
);
holder
.
ivPanoEdit
.
setVisibility
(
View
.
INVISIBLE
);
...
...
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