Commit 73ec9c75 by Kim Jinsung

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

カテゴリ表示状態時にパンくず表示問題対応
parent 621227f5
......@@ -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" />
......
......@@ -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, 40, 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