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
d9b0e673
You need to sign in or sign up before continuing.
Commit
d9b0e673
authored
May 25, 2021
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #42903【android10不具合対応 Check】ボタンの表示等が変わってしまっている
タブレットで以下の問題が発生するのを対応 画面下にカテゴリのナビゲーションバーのようなものが表示されているが、ボタンが見える
parent
aebd775b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/view/BreadCrumbButton.java
+3
-2
No files found.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/view/BreadCrumbButton.java
View file @
d9b0e673
...
...
@@ -3,6 +3,7 @@ package jp.agentec.abook.abv.ui.home.view;
import
jp.agentec.abook.abv.launcher.android.R
;
import
android.content.Context
;
import
android.graphics.Color
;
import
android.view.Gravity
;
import
android.widget.Button
;
import
android.widget.TextView
;
...
...
@@ -24,9 +25,9 @@ public class BreadCrumbButton extends Button {
//画面表示調整のため、最後に空白を追加する。
setText
(
name
+
" "
);
setTextColor
(
Color
.
BLACK
);
setGravity
(
Gravity
.
CENTER_VERTICAL
);
setBackgroundResource
(
R
.
drawable
.
btn_breadcrumbs
);
setPadding
(
10
,
4
0
,
40
,
0
);
setPadding
(
10
,
0
,
40
,
0
);
}
public
int
level
;
public
String
name
;
...
...
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