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
0c051855
Commit
0c051855
authored
Sep 06, 2023
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #53770【Android12検証 Check】図面のみ設問を全て設定し送信すると、画面が真っ暗になる
parent
2505445a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/PageView.java
+10
-0
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/PageView.java
View file @
0c051855
...
@@ -313,6 +313,16 @@ public class PageView extends ImageView {
...
@@ -313,6 +313,16 @@ public class PageView extends ImageView {
}
}
float
marginX
=
(
width
-
getCurrentPageWidth
())
/
2
;
float
marginX
=
(
width
-
getCurrentPageWidth
())
/
2
;
float
marginY
=
(
height
-
getCurrentPageHeight
())
/
2
;
float
marginY
=
(
height
-
getCurrentPageHeight
())
/
2
;
//#53770 図面作業で、報告中にキーオード表示・非表示時に呼ばれ、画面崩れ問題対応
if
(
isOperationPdf
)
{
float
mtransX
=
getMatrixValue
(
imgMatrix
)[
Matrix
.
MTRANS_X
];
float
mtransY
=
getMatrixValue
(
imgMatrix
)[
Matrix
.
MTRANS_Y
];
if
((
mtransX
!=
0
&&
marginX
==
mtransX
)
||
(
mtransY
!=
0
&&
marginY
==
mtransY
))
{
Logger
.
e
(
TAG
,
"marginX=%s, marginY=%s, mtransX=%s, mtransY=%s"
,
marginX
,
marginY
,
mtransX
,
mtransY
);
return
;
}
}
Logger
.
v
(
TAG
,
"marginX=%s marginY=%s"
,
marginX
,
marginY
);
Logger
.
v
(
TAG
,
"marginX=%s marginY=%s"
,
marginX
,
marginY
);
if
(
imgMatrix
==
null
)
{
if
(
imgMatrix
==
null
)
{
imgMatrix
=
new
Matrix
();
imgMatrix
=
new
Matrix
();
...
...
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