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
9c5d9202
Commit
9c5d9202
authored
Jul 10, 2019
by
Lee Jaebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Viewに絵を描くメソッドのタイミング変更
parent
034ba989
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
2 deletions
+21
-2
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/AcmsClient.java
+0
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ActionOperationTaskCode.java
+7
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ActionOperationTaskIcon.java
+7
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ActionOperationTaskPin.java
+7
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ZoomRelativeLayout.java
+0
-1
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/AcmsClient.java
View file @
9c5d9202
...
@@ -542,7 +542,6 @@ public class AcmsClient implements AcmsClientResponseListener {
...
@@ -542,7 +542,6 @@ public class AcmsClient implements AcmsClientResponseListener {
HttpMultipartList
.
add
(
new
HttpMultipart
(
ABookKeys
.
TASK_HOT_SPOT_INFO
,
taskReportDto
.
taskHotSpotInfo
));
HttpMultipartList
.
add
(
new
HttpMultipart
(
ABookKeys
.
TASK_HOT_SPOT_INFO
,
taskReportDto
.
taskHotSpotInfo
));
HttpMultipartList
.
add
(
new
HttpMultipart
(
ABookKeys
.
TASK_REPORT_INFO
,
taskReportDto
.
jsonData
));
HttpMultipartList
.
add
(
new
HttpMultipart
(
ABookKeys
.
TASK_REPORT_INFO
,
taskReportDto
.
jsonData
));
HttpMultipartList
.
add
(
new
HttpMultipart
(
ABookKeys
.
ATTACHED_CHANGE_FLAG
,
taskReportDto
.
attachedFileSendFlg
?
"1"
:
"0"
));
HttpMultipartList
.
add
(
new
HttpMultipart
(
ABookKeys
.
ATTACHED_CHANGE_FLAG
,
taskReportDto
.
attachedFileSendFlg
?
"1"
:
"0"
));
HttpMultipartList
.
add
(
new
HttpMultipart
(
ABookKeys
.
ROUTINE_TASK_FLAG
,
reportType
==
Constant
.
ReportType
.
RoutineTask
?
"1"
:
"0"
));
HttpMultipartList
.
add
(
new
HttpMultipart
(
ABookKeys
.
UPDATE_HOTSPOT_ONLY_FLAG
,
hotspotChangeFlg
?
"1"
:
"0"
));
HttpMultipartList
.
add
(
new
HttpMultipart
(
ABookKeys
.
UPDATE_HOTSPOT_ONLY_FLAG
,
hotspotChangeFlg
?
"1"
:
"0"
));
// 定期点検用
// 定期点検用
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ActionOperationTaskCode.java
View file @
9c5d9202
package
jp
.
agentec
.
abook
.
abv
.
ui
.
viewer
.
view
;
package
jp
.
agentec
.
abook
.
abv
.
ui
.
viewer
.
view
;
import
android.content.Context
;
import
android.content.Context
;
import
android.graphics.Canvas
;
import
android.graphics.Color
;
import
android.graphics.Color
;
import
android.graphics.Typeface
;
import
android.graphics.Typeface
;
import
android.text.TextUtils
;
import
android.text.TextUtils
;
...
@@ -62,4 +63,10 @@ public class ActionOperationTaskCode extends TextView {
...
@@ -62,4 +63,10 @@ public class ActionOperationTaskCode extends TextView {
this
.
startAnimation
(
animation
);
this
.
startAnimation
(
animation
);
this
.
isAnimated
=
true
;
this
.
isAnimated
=
true
;
}
}
@Override
protected
void
dispatchDraw
(
Canvas
canvas
)
{
invalidate
();
super
.
dispatchDraw
(
canvas
);
}
}
}
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ActionOperationTaskIcon.java
View file @
9c5d9202
package
jp
.
agentec
.
abook
.
abv
.
ui
.
viewer
.
view
;
package
jp
.
agentec
.
abook
.
abv
.
ui
.
viewer
.
view
;
import
android.content.Context
;
import
android.content.Context
;
import
android.graphics.Canvas
;
import
android.graphics.Color
;
import
android.graphics.Color
;
import
android.view.animation.AlphaAnimation
;
import
android.view.animation.AlphaAnimation
;
import
android.view.animation.Animation
;
import
android.view.animation.Animation
;
...
@@ -46,4 +47,10 @@ public class ActionOperationTaskIcon extends ImageView {
...
@@ -46,4 +47,10 @@ public class ActionOperationTaskIcon extends ImageView {
this
.
startAnimation
(
animation
);
this
.
startAnimation
(
animation
);
this
.
isAnimated
=
true
;
this
.
isAnimated
=
true
;
}
}
@Override
protected
void
dispatchDraw
(
Canvas
canvas
)
{
invalidate
();
super
.
dispatchDraw
(
canvas
);
}
}
}
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ActionOperationTaskPin.java
View file @
9c5d9202
package
jp
.
agentec
.
abook
.
abv
.
ui
.
viewer
.
view
;
package
jp
.
agentec
.
abook
.
abv
.
ui
.
viewer
.
view
;
import
android.content.Context
;
import
android.content.Context
;
import
android.graphics.Canvas
;
import
android.graphics.Color
;
import
android.graphics.Color
;
import
android.graphics.Typeface
;
import
android.graphics.Typeface
;
import
android.text.TextUtils
;
import
android.text.TextUtils
;
...
@@ -58,4 +59,10 @@ public class ActionOperationTaskPin extends ImageView {
...
@@ -58,4 +59,10 @@ public class ActionOperationTaskPin extends ImageView {
this
.
startAnimation
(
animation
);
this
.
startAnimation
(
animation
);
this
.
isAnimated
=
true
;
this
.
isAnimated
=
true
;
}
}
@Override
protected
void
dispatchDraw
(
Canvas
canvas
)
{
invalidate
();
super
.
dispatchDraw
(
canvas
);
}
}
}
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ZoomRelativeLayout.java
View file @
9c5d9202
...
@@ -184,7 +184,6 @@ public class ZoomRelativeLayout extends RelativeLayout {
...
@@ -184,7 +184,6 @@ public class ZoomRelativeLayout extends RelativeLayout {
canvas
.
concat
(
imgMatrix
);
canvas
.
concat
(
imgMatrix
);
}
}
super
.
dispatchDraw
(
canvas
);
super
.
dispatchDraw
(
canvas
);
invalidate
();
canvas
.
restore
();
canvas
.
restore
();
}
}
...
...
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