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
93380449
Commit
93380449
authored
Feb 28, 2019
by
Lee Jaebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#32576 作業指示ボタンの改善(ピン表示)作業のアニメーション修正
parent
7ea9e804
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
12 deletions
+26
-12
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ContentViewActivity.java
+7
-2
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ProjectTaskLayout.java
+18
-10
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ZoomRelativeLayout.java
+1
-0
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ContentViewActivity.java
View file @
93380449
...
...
@@ -5207,10 +5207,15 @@ public class ContentViewActivity extends ABVContentViewActivity {
List
<
View
>
deleteViewList
=
new
ArrayList
<
View
>();
for
(
int
j
=
0
;
j
<
zoomRelativeLayout
.
getChildCount
();
j
++)
{
View
view
=
zoomRelativeLayout
.
getChildAt
(
j
);
if
(
view
instanceof
ActionProjectTaskCode
||
view
instanceof
ActionProjectTaskPin
)
{
if
(
view
instanceof
ActionProjectTaskCode
)
{
((
ActionProjectTaskCode
)
view
).
stopAnimation
();
// 削除対象のビューをリストViewに追加する
deleteViewList
.
add
(
view
);
}
}
else
if
(
view
instanceof
ActionProjectTaskPin
)
{
((
ActionProjectTaskPin
)
view
).
stopAnimation
();
// 削除対象のビューをリストViewに追加する
deleteViewList
.
add
(
view
);
}
}
for
(
View
view
:
deleteViewList
)
{
zoomRelativeLayout
.
removeView
(
view
);
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ProjectTaskLayout.java
View file @
93380449
...
...
@@ -3,7 +3,6 @@ package jp.agentec.abook.abv.ui.viewer.view;
import
android.content.ClipData
;
import
android.content.Context
;
import
android.graphics.Color
;
import
android.graphics.Point
;
import
android.graphics.PointF
;
import
android.net.Uri
;
import
android.util.DisplayMetrics
;
...
...
@@ -29,11 +28,9 @@ import jp.agentec.abook.abv.bl.data.dao.AbstractDao;
import
jp.agentec.abook.abv.bl.data.dao.TaskDao
;
import
jp.agentec.abook.abv.bl.dto.ProjectTaskDto
;
import
jp.agentec.abook.abv.bl.dto.TaskDto
;
import
jp.agentec.abook.abv.cl.util.PreferenceUtil
;
import
jp.agentec.abook.abv.launcher.android.R
;
import
jp.agentec.abook.abv.ui.common.activity.ABVActivity
;
import
jp.agentec.abook.abv.ui.common.activity.ABVContentViewActivity
;
import
jp.agentec.abook.abv.ui.common.appinfo.AppDefType
;
import
jp.agentec.abook.abv.ui.viewer.activity.ContentViewActivity
;
import
jp.agentec.adf.util.StringUtil
;
...
...
@@ -74,14 +71,14 @@ public class ProjectTaskLayout extends RelativeLayout {
public
ZoomRelativeLayout
currentLayout
;
public
ProjectTaskDto
currentTaskDto
;
private
ContentViewActivity
c
ontext
;
private
ContentViewActivity
mC
ontext
;
private
JsInf
jsInf
=
new
JsInf
();
private
static
TaskDao
mTaskDao
=
AbstractDao
.
getDao
(
TaskDao
.
class
);
public
ProjectTaskLayout
(
final
Context
context
,
final
long
contentId
,
final
String
linkUrl
,
boolean
isNormalSize
)
{
super
(
context
);
this
.
c
ontext
=
(
ContentViewActivity
)
context
;
mC
ontext
=
(
ContentViewActivity
)
context
;
if
(
isNormalSize
)
{
setPadding
(
0
,
130
,
0
,
0
);
...
...
@@ -168,6 +165,7 @@ public class ProjectTaskLayout extends RelativeLayout {
}
public
void
addProjectTaskIcon
(
final
Context
context
,
final
ZoomRelativeLayout
rootLayout
,
final
ProjectTaskDto
dto
,
boolean
isShowPin
)
{
mContext
=
(
ContentViewActivity
)
context
;
RelativeLayout
.
LayoutParams
params
;
final
float
density
=
context
.
getResources
().
getDisplayMetrics
().
density
;
View
taskView
;
...
...
@@ -210,6 +208,11 @@ public class ProjectTaskLayout extends RelativeLayout {
// 座標x,yのセット
taskPin
.
setTranslationX
(
pointView
.
x
-
(
width
/
2
));
taskPin
.
setTranslationY
(
pointView
.
y
-
height
);
if
(
currentTaskDto
!=
null
&&
currentTaskDto
.
taskKey
.
equals
(
taskPin
.
taskKey
)
&&
mContext
.
getOpenedProjestTask
())
{
taskPin
.
startBlinkAnimation
();
}
else
{
taskPin
.
stopAnimation
();
}
taskPin
.
setVisibility
(
View
.
VISIBLE
);
taskView
=
taskPin
;
}
else
{
...
...
@@ -236,6 +239,11 @@ public class ProjectTaskLayout extends RelativeLayout {
// 座標x,yのセット
taskCode
.
setTranslationX
(
pointView
.
x
-
((
realWidth
>
0
?
realWidth
:
postWidth
)
/
2
));
taskCode
.
setTranslationY
(
pointView
.
y
-
(
postHeight
/
2
));
if
(
currentTaskDto
!=
null
&&
currentTaskDto
.
taskKey
.
equals
(
taskCode
.
taskKey
)
&&
mContext
.
getOpenedProjestTask
())
{
taskCode
.
startBlinkAnimation
();
}
else
{
taskCode
.
stopAnimation
();
}
taskCode
.
setVisibility
(
View
.
VISIBLE
);
}
});
...
...
@@ -277,7 +285,7 @@ public class ProjectTaskLayout extends RelativeLayout {
}
private
boolean
isTaskFinished
(
String
taskKey
)
{
if
(
c
ontext
.
getProjectReportUpdateType
()
==
Constant
.
ProjectUpdateType
.
HISTORY_ADD
)
{
if
(
mC
ontext
.
getProjectReportUpdateType
()
==
Constant
.
ProjectUpdateType
.
HISTORY_ADD
)
{
return
false
;
}
else
{
return
mTaskDao
.
getTaskByTaskKey
(
taskKey
).
taskStatus
==
FINISHED_STATUS
;
...
...
@@ -335,7 +343,7 @@ public class ProjectTaskLayout extends RelativeLayout {
public
void
showProjectTaskLayout
()
{
if
(
getVisibility
()
!=
View
.
VISIBLE
)
{
setVisibility
(
View
.
VISIBLE
);
c
ontext
.
setProjectTaskViewStatus
(
true
);
mC
ontext
.
setProjectTaskViewStatus
(
true
);
}
}
...
...
@@ -433,9 +441,9 @@ public class ProjectTaskLayout extends RelativeLayout {
if
(
currentTaskDto
!=
null
&&
!
StringUtil
.
isNullOrEmpty
(
currentTaskDto
.
taskKey
))
{
if
(
currentTaskDto
.
taskKey
.
equals
(
TEMP_TASK_KEY
))
{
addProjectTaskIcon
(
context
,
currentLayout
,
currentTaskDto
,
((
ContentViewActivity
)
c
ontext
).
mShowPinFlg
);
addProjectTaskIcon
(
mContext
,
currentLayout
,
currentTaskDto
,
((
ContentViewActivity
)
mC
ontext
).
mShowPinFlg
);
}
else
{
if
(
c
ontext
.
getOpenedProjestTask
())
{
if
(
mC
ontext
.
getOpenedProjestTask
())
{
setTaskCodeBlinkAnimation
(
currentTaskDto
.
taskKey
,
true
);
}
}
...
...
@@ -551,7 +559,7 @@ public class ProjectTaskLayout extends RelativeLayout {
private
class
JsInf
{
@JavascriptInterface
public
void
getAttachedDataUrl
(
String
data
)
{
((
ABVContentViewActivity
)
ProjectTaskLayout
.
this
.
c
ontext
).
commonAttachedDataUrl
(
data
);
((
ABVContentViewActivity
)
ProjectTaskLayout
.
this
.
mC
ontext
).
commonAttachedDataUrl
(
data
);
}
}
}
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ZoomRelativeLayout.java
View file @
93380449
...
...
@@ -188,6 +188,7 @@ public class ZoomRelativeLayout extends RelativeLayout {
canvas
.
concat
(
imgMatrix
);
}
super
.
dispatchDraw
(
canvas
);
invalidate
();
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