Commit 761fc0bc by Kim Jinsung

Merge branch 'features/1.3.200_42903' into 'features/1.3.200'

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

See merge request !162
parents 0bf02ca5 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, 40, 40, 0);
setPadding(10, 0, 40, 0);
}
public int level;
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