主页tab未选中文字颜色统一,新增输入框提示文字颜色规范

This commit is contained in:
huangjian
2021-03-29 17:17:30 +08:00
parent 556d698d23
commit 57979c8a8f
8 changed files with 17 additions and 12 deletions

View File

@@ -51,8 +51,8 @@
android:maxLength="20"
android:maxLines="1"
android:text=""
android:textColor="#555574"
android:textColorHint="#555574"
android:textColor="@color/text_normal_c6c6e9"
android:textColorHint="@color/text_hint_555574"
android:textCursorDrawable="@null"
android:textSize="14sp" />

View File

@@ -17,7 +17,7 @@
app:tab_icon="@mipmap/ic_main_tab_game_home"
app:tab_icon_select="@mipmap/ic_main_tab_game_pressed"
app:tab_text="派对"
app:tab_text_color="#555574"
app:tab_text_color="@color/main_tab_normal"
app:tab_text_color_select="@color/app_248cfe" />
<com.yizhuan.erban.ui.widget.MainRedPointTab
@@ -30,7 +30,7 @@
app:tab_icon="@mipmap/ic_main_tab_find"
app:tab_icon_select="@mipmap/ic_main_tab_find_pressed"
app:tab_text="广场"
app:tab_text_color="#555574"
app:tab_text_color="@color/main_tab_normal"
app:tab_text_color_select="@color/app_248cfe" />
<com.yizhuan.erban.ui.widget.MainTab
@@ -43,7 +43,7 @@
app:tab_icon="@mipmap/ic_main_tab_peace"
app:tab_icon_select="@mipmap/ic_main_tab_peace_pressed"
app:tab_text="赛事"
app:tab_text_color="#555574"
app:tab_text_color="@color/main_tab_normal"
app:tab_text_color_select="@color/app_248cfe" />
<com.yizhuan.erban.ui.widget.MainRedPointTab
@@ -56,7 +56,7 @@
app:tab_icon="@mipmap/ic_main_tab_msg"
app:tab_icon_select="@mipmap/ic_main_tab_msg_pressed"
app:tab_text="消息"
app:tab_text_color="#555574"
app:tab_text_color="@color/main_tab_normal"
app:tab_text_color_select="@color/app_248cfe" />
<com.yizhuan.erban.ui.widget.MainTab
@@ -69,7 +69,7 @@
app:tab_icon="@mipmap/ic_main_tab_me"
app:tab_icon_select="@mipmap/ic_main_tab_me_pressed"
app:tab_text="我的"
app:tab_text_color="#555574"
app:tab_text_color="@color/main_tab_normal"
app:tab_text_color_select="@color/app_248cfe" />
</merge>

View File

@@ -15,8 +15,8 @@
app:tab_icon="@mipmap/ic_main_tab_game_home"
app:tab_icon_select="@mipmap/ic_main_tab_game_pressed"
app:tab_text="首页"
app:tab_text_color_select="@color/appColor"
app:tab_text_color="@color/color_999999" />
app:tab_text_color_select="@color/app_248cfe"
app:tab_text_color="@color/main_tab_normal" />
<com.netease.nim.uikit.common.ui.draggablebubbles.BubbleView
android:id="@+id/msg_number"

View File

@@ -561,6 +561,8 @@
<color name="text_normal_c6c6e9">#c6c6e9</color>
<!-- 日期等次级文案 -->
<color name="text_secondary_4f516a">#4F516A</color>
<!-- 输入框提示文字颜色 -->
<color name="text_hint_555574">#555574</color>
<!-- 分隔线颜色 -->
<color name="line_color_353548">#353548</color>
<!-- 弹窗取消按钮文字颜色 -->
@@ -571,6 +573,8 @@
<color name="color_7727e4">#7727E4</color>
<!-- 按钮不可点击背景颜色 -->
<color name="color_303043">#303043</color>
<!-- 首页tab未选中颜色 -->
<color name="main_tab_normal">#555574</color>
<!-- 音游UI规范 end-->

View File

@@ -3,7 +3,7 @@
<item android:state_enabled="false">
<shape android:shape="rectangle">
<corners android:radius="@dimen/dp_50" />
<solid android:color="#555574" />
<solid android:color="@color/color_303043" />
</shape>
</item>
<item android:state_enabled="true">

View File

@@ -69,7 +69,7 @@
android:minHeight="30dp"
android:paddingStart="10dp"
android:textColor="@color/white"
android:textColorHint="#555574"
android:textColorHint="@color/text_hint_555574"
android:textSize="@dimen/sp_14" />
<ImageView

View File

@@ -69,7 +69,7 @@
android:imeOptions="actionSend"
android:inputType="text"
android:hint="@string/message_hint"
android:textColorHint="#555574"
android:textColorHint="@color/text_hint_555574"
android:paddingStart="@dimen/dp_10"
android:paddingEnd="10dp"
android:background="@drawable/bg_message_input"

View File

@@ -73,5 +73,6 @@
<color name="color_BAB0FF">#BAB0FF</color>
<color name="color_2a2a39">#2A2A39</color>
<color name="color_1c1b22">#1C1B22</color>
<color name="text_hint_555574">#555574</color>
</resources>