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
65550ce9
Commit
65550ce9
authored
May 25, 2021
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #42903【android10不具合対応 Check】ボタンの表示等が変わってしまっている
メモ画面の削除ボタンサイズ調整
parent
b2a6d5eb
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
ABVJE_UI_Android/res/layout/memo_popup.xml
+1
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/action/MemoManager.java
+2
-1
No files found.
ABVJE_UI_Android/res/layout/memo_popup.xml
View file @
65550ce9
...
...
@@ -50,7 +50,7 @@
android:text=
"@string/save"
android:visibility=
"gone"
/>
<Button
<
Image
Button
android:id=
"@+id/memo_delete"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/action/MemoManager.java
View file @
65550ce9
...
...
@@ -18,6 +18,7 @@ import android.widget.AdapterView;
import
android.widget.AdapterView.OnItemClickListener
;
import
android.widget.Button
;
import
android.widget.EditText
;
import
android.widget.ImageButton
;
import
android.widget.ImageView
;
import
android.widget.RelativeLayout
;
import
android.widget.TextView
;
...
...
@@ -61,7 +62,7 @@ public class MemoManager {
memoDialog
.
setContentView
(
contentView
);
final
EditText
memoText
=
(
EditText
)
contentView
.
findViewById
(
R
.
id
.
memoText
);
final
Button
btnDelete
=
(
Button
)
contentView
.
findViewById
(
R
.
id
.
memo_delete
);
final
ImageButton
btnDelete
=
(
Image
Button
)
contentView
.
findViewById
(
R
.
id
.
memo_delete
);
final
Button
btnSave
=
(
Button
)
contentView
.
findViewById
(
R
.
id
.
memo_save
);
final
Button
btnCancel
=
(
Button
)
contentView
.
findViewById
(
R
.
id
.
memo_cancel
);
final
ImageView
abookmark
=
(
ImageView
)
contentView
.
findViewById
(
R
.
id
.
abookmark
);
...
...
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