Commit 9b46c888 by Kim Jinsung

Bug #33796 【SATO Android1.0.0】作業一覧リスト表示にNewボタン表示が更新されない

parent 136c8a58
...@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment