|
@@ -36,8 +36,8 @@ public class Screen extends JsonObject implements Serializable {
|
36
|
36
|
private static final String KEY_TOOL_BAR_COLOR = "toolBarColor";
|
37
|
37
|
private static final String KEY_TOOL_BAR_HIDDEN = "navBarHidden";
|
38
|
38
|
private static final String KEY_NAVIGATION_BAR_COLOR = "navigationBarColor";
|
39
|
|
- private static final String KEY_BUTTONS_TINT_COLOR = "buttonsTint";
|
40
|
|
- private static final String KEY_TITLE_COLOR = "titleColor";
|
|
39
|
+ private static final String KEY_NAV_BAR_BUTTON_COLOR = "navBarButtonColor";
|
|
40
|
+ private static final String KEY_NAV_BAR_TEXT_COLOR = "navBarTextColor";
|
41
|
41
|
private static final String KEY_TAB_NORMAL_TEXT_COLOR = "tabNormalTextColor";
|
42
|
42
|
private static final String KEY_TAB_SELECTED_TEXT_COLOR = "tabSelectedTextColor";
|
43
|
43
|
private static final String KEY_TAB_INDICATOR_COLOR = "tabIndicatorColor";
|
|
@@ -58,8 +58,8 @@ public class Screen extends JsonObject implements Serializable {
|
58
|
58
|
@Nullable public Boolean toolBarHidden;
|
59
|
59
|
@Nullable @ColorInt public Integer statusBarColor;
|
60
|
60
|
@Nullable @ColorInt public Integer navigationBarColor;
|
61
|
|
- @Nullable @ColorInt public Integer buttonsTintColor;
|
62
|
|
- @Nullable @ColorInt public Integer titleColor;
|
|
61
|
+ @Nullable @ColorInt public Integer navBarButtonColor;
|
|
62
|
+ @Nullable @ColorInt public Integer navBarTextColor;
|
63
|
63
|
@Nullable @ColorInt public Integer tabNormalTextColor;
|
64
|
64
|
@Nullable @ColorInt public Integer tabSelectedTextColor;
|
65
|
65
|
@Nullable @ColorInt public Integer tabIndicatorColor;
|
|
@@ -110,8 +110,8 @@ public class Screen extends JsonObject implements Serializable {
|
110
|
110
|
toolBarHidden = getBoolean(style, KEY_TOOL_BAR_HIDDEN);
|
111
|
111
|
statusBarColor = getColor(style, KEY_STATUS_BAR_COLOR);
|
112
|
112
|
navigationBarColor = getColor(style, KEY_NAVIGATION_BAR_COLOR);
|
113
|
|
- buttonsTintColor = getColor(style, KEY_BUTTONS_TINT_COLOR);
|
114
|
|
- titleColor = getColor(style, KEY_TITLE_COLOR);
|
|
113
|
+ navBarButtonColor = getColor(style, KEY_NAV_BAR_BUTTON_COLOR);
|
|
114
|
+ navBarTextColor = getColor(style, KEY_NAV_BAR_TEXT_COLOR);
|
115
|
115
|
tabNormalTextColor = getColor(style, KEY_TAB_NORMAL_TEXT_COLOR);
|
116
|
116
|
tabSelectedTextColor = getColor(style, KEY_TAB_SELECTED_TEXT_COLOR);
|
117
|
117
|
tabIndicatorColor = getColor(style, KEY_TAB_INDICATOR_COLOR);
|