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
59b38cf3
Commit
59b38cf3
authored
Sep 29, 2025
by
Kang Donghun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#67472 【android15検証 @Form】画面の上と下にあるボタンが、端末のボタンに覆われ操作できない コード整理
parent
fee105b2
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
14 deletions
+11
-14
ABVJE_UI_Android/res/layout/ac_setting_main.xml
+9
-2
ABVJE_UI_Android/res/values/dimens.xml
+0
-11
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/util/DisplayUtil.java
+1
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ContentViewActivity.java
+0
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ThumbnailSeekBarLayout.java
+1
-0
No files found.
ABVJE_UI_Android/res/layout/ac_setting_main.xml
View file @
59b38cf3
...
@@ -6,7 +6,13 @@
...
@@ -6,7 +6,13 @@
android:layout_height=
"match_parent"
android:layout_height=
"match_parent"
android:background=
"@drawable/setting_bg"
android:background=
"@drawable/setting_bg"
android:orientation=
"vertical"
android:orientation=
"vertical"
android:padding=
"20dp"
>
android:fitsSystemWindows=
"true"
>
<LinearLayout
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:orientation=
"vertical"
android:padding=
"20dp"
>
<LinearLayout
<LinearLayout
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
...
@@ -36,5 +42,5 @@
...
@@ -36,5 +42,5 @@
android:layout_width=
"match_parent"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:layout_height=
"match_parent"
tools:layout=
"@layout/setting_fragment"
/>
tools:layout=
"@layout/setting_fragment"
/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
\ No newline at end of file
ABVJE_UI_Android/res/values/dimens.xml
deleted
100644 → 0
View file @
fee105b2
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen
name=
"opeartion_title_text_size"
/>
<dimen
name=
"report_status_height_1"
>
48dp
</dimen>
<dimen
name=
"report_status_height_2"
>
32dp
</dimen>
<dimen
name=
"report_status_height_3"
>
24dp
</dimen>
<dimen
name=
"report_status_width_1"
>
80dp
</dimen>
<dimen
name=
"report_status_width_2"
>
36dp
</dimen>
</resources>
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/util/DisplayUtil.java
View file @
59b38cf3
...
@@ -30,7 +30,7 @@ public class DisplayUtil {
...
@@ -30,7 +30,7 @@ public class DisplayUtil {
WindowInsets
windowInsets
=
metrics
.
getWindowInsets
();
WindowInsets
windowInsets
=
metrics
.
getWindowInsets
();
android
.
graphics
.
Insets
insets
=
windowInsets
.
getInsets
(
android
.
graphics
.
Insets
insets
=
windowInsets
.
getInsets
(
WindowInsets
.
Type
.
system
Bars
()
|
WindowInsets
.
Type
.
displayCutout
()
WindowInsets
.
Type
.
navigation
Bars
()
|
WindowInsets
.
Type
.
displayCutout
()
);
);
displayWidth
=
bounds
.
width
()
-
(
insets
.
left
+
insets
.
right
);
displayWidth
=
bounds
.
width
()
-
(
insets
.
left
+
insets
.
right
);
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ContentViewActivity.java
View file @
59b38cf3
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/ThumbnailSeekBarLayout.java
View file @
59b38cf3
...
@@ -254,6 +254,7 @@ public class ThumbnailSeekBarLayout extends LinearLayout {
...
@@ -254,6 +254,7 @@ public class ThumbnailSeekBarLayout extends LinearLayout {
float
x
=
ev
.
getRawX
()
-
insetLeft
;
float
x
=
ev
.
getRawX
()
-
insetLeft
;
float
y
=
ev
.
getRawY
()
-
insetTop
;
float
y
=
ev
.
getRawY
()
-
insetTop
;
Logger
.
d
(
TAG
,
"[onTouch]:page:"
+
page
+
" action="
+
str
(
ev
.
getAction
())
+
", count="
+
ev
.
getPointerCount
()+
" x="
+
x
+
" y="
+
y
);
Logger
.
d
(
TAG
,
"[onTouch]:page:"
+
page
+
" action="
+
str
(
ev
.
getAction
())
+
", count="
+
ev
.
getPointerCount
()+
" x="
+
x
+
" y="
+
y
);
switch
(
ev
.
getAction
()
&
MotionEvent
.
ACTION_MASK
)
{
switch
(
ev
.
getAction
()
&
MotionEvent
.
ACTION_MASK
)
{
case
MotionEvent
.
ACTION_DOWN
:
case
MotionEvent
.
ACTION_DOWN
:
// 中サイズのサムネイル表示
// 中サイズのサムネイル表示
...
...
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