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
b4dc037f
Commit
b4dc037f
authored
Oct 28, 2025
by
Kang Donghun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#68351 【android api35 Check】ベースが「図面」の作業の報告フォームを開き、テキストの入力を行うとベース画像が下にずれていく
parent
6e68cae2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ContentViewActivity.java
+1
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/PageView.java
+6
-0
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ContentViewActivity.java
View file @
b4dc037f
...
...
@@ -278,7 +278,7 @@ public class ContentViewActivity extends ABVContentViewActivity {
// 作業指示、作業報告
private
OperationTaskLayout
operationTaskLayout
;
private
LinearLayout
mScaleZoomLayout
;
p
rivate
boolean
isOpenedOperationTask
=
false
;
p
ublic
boolean
isOpenedOperationTask
=
false
;
private
TaskHotspotJSON
mTaskHotspotJSON
;
// 移動・タップモードの切り替えボタン
protected
ImageButton
btnMoveOrClickToggleIcon
;
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/PageView.java
View file @
b4dc037f
...
...
@@ -299,6 +299,12 @@ public class PageView extends ImageView {
@Override
protected
void
onSizeChanged
(
int
w
,
int
h
,
int
oldw
,
int
oldh
)
{
// 作業入力画面表示時には画面サイズ変更を無視する
if
(((
ContentViewActivity
)
getContext
()).
isOpenedOperationTask
)
{
Logger
.
v
(
TAG
,
"[onSizeChanged] status isOpenedOperationTask"
);
return
;
}
Logger
.
v
(
TAG
,
"[onSizeChanged]:width=%s height=%s oldw=%s, oldh=%s, pageNumber=%s"
,
w
,
h
,
oldw
,
oldh
,
mPageNumber
);
if
((
float
)
w
/
h
>
0.9
&&
(
float
)
w
/
h
<
1.1
)
{
// 不正な値の場合無視
return
;
...
...
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