Commit d9b0e673 by Kim Jinsung

Bug #42903【android10不具合対応 Check】ボタンの表示等が変わってしまっている

タブレットで以下の問題が発生するのを対応
画面下にカテゴリのナビゲーションバーのようなものが表示されているが、ボタンが見える
parent aebd775b
...@@ -3,6 +3,7 @@ package jp.agentec.abook.abv.ui.home.view; ...@@ -3,6 +3,7 @@ package jp.agentec.abook.abv.ui.home.view;
import jp.agentec.abook.abv.launcher.android.R; import jp.agentec.abook.abv.launcher.android.R;
import android.content.Context; import android.content.Context;
import android.graphics.Color; import android.graphics.Color;
import android.view.Gravity;
import android.widget.Button; import android.widget.Button;
import android.widget.TextView; import android.widget.TextView;
...@@ -24,9 +25,9 @@ public class BreadCrumbButton extends Button { ...@@ -24,9 +25,9 @@ public class BreadCrumbButton extends Button {
//画面表示調整のため、最後に空白を追加する。 //画面表示調整のため、最後に空白を追加する。
setText(name + " "); setText(name + " ");
setTextColor(Color.BLACK); setTextColor(Color.BLACK);
setGravity(Gravity.CENTER_VERTICAL);
setBackgroundResource(R.drawable.btn_breadcrumbs); setBackgroundResource(R.drawable.btn_breadcrumbs);
setPadding(10, 40, 40, 0); setPadding(10, 0, 40, 0);
} }
public int level; public int level;
public String name; public String name;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment