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
73ec9c75
Commit
73ec9c75
authored
May 25, 2021
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #42903【android10不具合対応 Check】ボタンの表示等が変わってしまっている
カテゴリ表示状態時にパンくず表示問題対応
parent
621227f5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
ABVJE_UI_Android/res/layout/content_breadcrumb_layout.xml
+1
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/view/BreadCrumbButton.java
+8
-3
No files found.
ABVJE_UI_Android/res/layout/content_breadcrumb_layout.xml
View file @
73ec9c75
...
...
@@ -8,7 +8,7 @@
<Button
android:id=
"@+id/btn_show_list_view"
android:layout_width=
"
wrap_content
"
android:layout_width=
"
60dp
"
android:layout_height=
"wrap_content"
android:background=
"@drawable/btn_show_list"
/>
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/view/BreadCrumbButton.java
View file @
73ec9c75
...
...
@@ -4,6 +4,9 @@ import jp.agentec.abook.abv.launcher.android.R;
import
android.content.Context
;
import
android.graphics.Color
;
import
android.widget.Button
;
import
android.widget.TextView
;
/**
* パンくず履歴用のボタン
...
...
@@ -16,12 +19,14 @@ public class BreadCrumbButton extends Button {
super
(
context
);
}
public
BreadCrumbButton
(
Context
context
,
String
name
)
{
super
(
context
);
super
(
context
,
null
,
R
.
style
.
ButtonABookDark
);
this
.
name
=
name
;
setText
(
name
);
//画面表示調整のため、最後に空白を追加する。
setText
(
name
+
" "
);
setTextColor
(
Color
.
BLACK
);
setBackgroundResource
(
R
.
drawable
.
btn_breadcrumbs
);
setPadding
(
10
,
0
,
40
,
0
);
setPadding
(
10
,
4
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