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
2e872a0d
Commit
2e872a0d
authored
May 31, 2021
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #43014【android10不具合対応 Check】ビューア画面上部のアイコンが引き延ばされている
parent
2efdefbd
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
15 deletions
+15
-15
ABVJE_Res_Default_Android/res/drawable-mdpi/ic_bookmark_on.png
+0
-0
ABVJE_Res_Default_Android/res/drawable-xhdpi/ic_bookmark_on.png
+0
-0
ABVJE_UI_Android/res/layout/ac_html_webview.xml
+5
-5
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ParentWebViewActivity.java
+10
-10
No files found.
ABVJE_Res_Default_Android/res/drawable-mdpi/ic_bookmark_on.png
0 → 100644
View file @
2e872a0d
868 Bytes
ABVJE_Res_Default_Android/res/drawable-xhdpi/ic_bookmark_on.png
deleted
100644 → 0
View file @
2efdefbd
678 Bytes
ABVJE_UI_Android/res/layout/ac_html_webview.xml
View file @
2e872a0d
...
...
@@ -12,7 +12,7 @@
android:background=
"@color/app_color"
android:minHeight=
"50dp"
>
<Button
<
Image
Button
android:id=
"@+id/closeBtn"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
...
...
@@ -22,7 +22,7 @@
android:background=
"@drawable/btn_close"
android:contentDescription=
"@string/cont_desc"
/>
<Button
<
Image
Button
android:id=
"@+id/btn_link_original_back"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
...
...
@@ -79,7 +79,7 @@
android:background=
"@drawable/btn_remote_start"
android:visibility=
"gone"
/>
<Button
<
Image
Button
android:id=
"@+id/btn_history_list"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
...
...
@@ -95,7 +95,7 @@
android:layout_centerVertical=
"true"
android:layout_toLeftOf=
"@+id/menuLayout"
android:layout_marginRight=
"10dp"
>
<Button
<
Image
Button
android:id=
"@+id/btnWebBack"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
...
...
@@ -103,7 +103,7 @@
android:background=
"@drawable/btn_history_back"
android:contentDescription=
"@string/cont_desc"
/>
<Button
<
Image
Button
android:id=
"@+id/btnWebForward"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ParentWebViewActivity.java
View file @
2e872a0d
...
...
@@ -60,12 +60,12 @@ public class ParentWebViewActivity extends ABVContentViewActivity {
protected
ImageButton
promoteBtn
;
protected
ImageButton
pauseBtn
;
protected
ImageButton
mBtnRemoteStart
;
protected
Button
historyListBtn
;
protected
Image
Button
historyListBtn
;
protected
ImageButton
btnWebClose
;
protected
Button
closeButton
;
protected
Button
btnLinkOriginalBack
;
protected
Button
btnWebBack
;
protected
Button
btnWebForward
;
protected
Image
Button
closeButton
;
protected
Image
Button
btnLinkOriginalBack
;
protected
Image
Button
btnWebBack
;
protected
Image
Button
btnWebForward
;
private
ProgressBar
m_progress
;
protected
ContentDto
mContentDto
;
...
...
@@ -77,18 +77,18 @@ public class ParentWebViewActivity extends ABVContentViewActivity {
taskListButton
=
(
ImageButton
)
findViewById
(
R
.
id
.
btn_show_task_list
);
// helpButton = (ImageButton) findViewById(R.id.btn_help);
btnWebClose
=
(
ImageButton
)
findViewById
(
R
.
id
.
btnWebClose
);
closeButton
=
(
Button
)
findViewById
(
R
.
id
.
closeBtn
);
historyListBtn
=
(
Button
)
findViewById
(
R
.
id
.
btn_history_list
);
closeButton
=
(
Image
Button
)
findViewById
(
R
.
id
.
closeBtn
);
historyListBtn
=
(
Image
Button
)
findViewById
(
R
.
id
.
btn_history_list
);
subMenuBtn
=
(
ImageButton
)
findViewById
(
R
.
id
.
btn_sub_menu
);
exitMeetingBtn
=
(
ImageButton
)
findViewById
(
R
.
id
.
btn_exitMeeting
);
mBtnRemoteStart
=
(
ImageButton
)
findViewById
(
R
.
id
.
btn_remote_start
);
pauseBtn
=
(
ImageButton
)
findViewById
(
R
.
id
.
btn_remote_pause
);
promoteBtn
=
(
ImageButton
)
findViewById
(
R
.
id
.
btn_promote
);
btnWebBack
=
(
Button
)
findViewById
(
R
.
id
.
btnWebBack
);
btnWebForward
=
(
Button
)
findViewById
(
R
.
id
.
btnWebForward
);
btnWebBack
=
(
Image
Button
)
findViewById
(
R
.
id
.
btnWebBack
);
btnWebForward
=
(
Image
Button
)
findViewById
(
R
.
id
.
btnWebForward
);
m_progress
=
(
ProgressBar
)
findViewById
(
R
.
id
.
refresh_prog
);
btnLinkOriginalBack
=
(
Button
)
findViewById
(
R
.
id
.
btn_link_original_back
);
btnLinkOriginalBack
=
(
Image
Button
)
findViewById
(
R
.
id
.
btn_link_original_back
);
if
(!
isLinkedContent
)
{
final
Context
context
=
this
;
...
...
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