添加项目
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 1.0 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1013 B |
Binary file not shown.
|
After Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 786 B |
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<solid
|
||||
android:color="@color/chat_bubble_other_color_light"/>
|
||||
|
||||
<corners
|
||||
android:radius="10.96dp"
|
||||
android:topLeftRadius="2.19dp" />
|
||||
|
||||
<padding
|
||||
android:bottom="5.4dp"
|
||||
android:top="5.4dp"
|
||||
android:left="5.4dp"
|
||||
android:right="5.4dp"/>
|
||||
|
||||
</shape>
|
||||
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
|
||||
<solid
|
||||
android:color="@color/chat_bubble_self_color_light"/>
|
||||
|
||||
<corners
|
||||
android:radius="10.96dp"
|
||||
android:topRightRadius="2.19dp" />
|
||||
|
||||
<padding
|
||||
android:bottom="5.4dp"
|
||||
android:top="5.4dp"
|
||||
android:left="5.4dp"
|
||||
android:right="5.4dp"/>
|
||||
</shape>
|
||||
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="chat_bubble_other_color_light">#ECECEC</color>
|
||||
<color name="chat_bubble_self_color_light">@color/core_bubble_bg_color_light</color>
|
||||
<color name="chat_input_layout_bg_light">#EBF0F6</color>
|
||||
|
||||
<color name="chat_unread_dot_bg_color_light">#FFAABCDE</color>
|
||||
<color name="chat_unread_dot_text_color_light">#FFFFFFFF</color>
|
||||
|
||||
<color name="chat_other_msg_text_color_light">#000000</color>
|
||||
<color name="chat_self_msg_text_color_light">#000000</color>
|
||||
|
||||
<color name="chat_self_custom_msg_text_color_light">#000000</color>
|
||||
<color name="chat_self_custom_msg_link_color_light">#147AFF</color>
|
||||
<color name="chat_other_custom_msg_text_color_light">#000000</color>
|
||||
<color name="chat_other_custom_msg_link_color_light">#147AFF</color>
|
||||
|
||||
<color name="chat_tip_text_color_light">#147AFF</color>
|
||||
|
||||
<color name="chat_self_reply_quote_bg_color_light">#0D444444</color>
|
||||
<color name="chat_self_reply_line_bg_color_light">#1A444444</color>
|
||||
<color name="chat_self_reply_quote_text_color_light">#888888</color>
|
||||
<color name="chat_self_reply_text_color_light">#000000</color>
|
||||
|
||||
<color name="chat_other_reply_quote_bg_color_light">#0D444444</color>
|
||||
<color name="chat_other_reply_line_bg_color_light">#1A444444</color>
|
||||
<color name="chat_other_reply_quote_text_color_light">#FF888888</color>
|
||||
<color name="chat_other_reply_text_color_light">#000000</color>
|
||||
|
||||
<color name="chat_read_receipt_text_color_light">#679CE1</color>
|
||||
<color name="chat_react_text_color_light">#888888</color>
|
||||
<color name="chat_react_other_text_color_light">#888888</color>
|
||||
|
||||
<color name="chat_pressed_bg_color_light">#19006EFF</color>
|
||||
|
||||
</resources>
|
||||
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<style name="TUIChatLightTheme" parent="TUIBaseLightTheme">
|
||||
<item name="chat_bubble_self_bg_color">@color/chat_bubble_self_color_light</item>
|
||||
<item name="chat_bubble_other_bg_color">@color/chat_bubble_other_color_light</item>
|
||||
<item name="chat_bubble_self_bg">@drawable/chat_bubble_self_bg_light</item>
|
||||
<item name="chat_bubble_other_bg">@drawable/chat_bubble_other_bg_light</item>
|
||||
|
||||
<item name="chat_input_area_bg">@color/chat_input_layout_bg_light</item>
|
||||
|
||||
<item name="chat_unread_dot_bg_color">@color/chat_unread_dot_bg_color_light</item>
|
||||
<item name="chat_unread_dot_text_color">@color/chat_unread_dot_text_color_light</item>
|
||||
|
||||
<item name="chat_title_bar_more_menu">@drawable/chat_title_bar_more_menu_light</item>
|
||||
|
||||
<item name="chat_other_msg_text_color">@color/chat_other_msg_text_color_light</item>
|
||||
<item name="chat_self_msg_text_color">@color/chat_self_msg_text_color_light</item>
|
||||
<item name="chat_self_custom_msg_text_color">@color/chat_self_custom_msg_text_color_light</item>
|
||||
<item name="chat_other_custom_msg_text_color">@color/chat_other_custom_msg_text_color_light</item>
|
||||
<item name="chat_self_custom_msg_link_color">@color/chat_self_custom_msg_link_color_light</item>
|
||||
<item name="chat_other_custom_msg_link_color">@color/chat_other_custom_msg_link_color_light</item>
|
||||
|
||||
<item name="chat_tip_text_color">@color/chat_tip_text_color_light</item>
|
||||
|
||||
<item name="chat_self_reply_quote_bg_color">@color/chat_self_reply_quote_bg_color_light</item>
|
||||
<item name="chat_other_reply_quote_bg_color">@color/chat_other_reply_quote_bg_color_light</item>
|
||||
<item name="chat_self_reply_line_bg_color">@color/chat_self_reply_line_bg_color_light</item>
|
||||
<item name="chat_other_reply_line_bg_color">@color/chat_other_reply_line_bg_color_light</item>
|
||||
<item name="chat_self_reply_quote_text_color">@color/chat_self_reply_quote_text_color_light</item>
|
||||
<item name="chat_other_reply_quote_text_color">@color/chat_other_reply_quote_text_color_light</item>
|
||||
<item name="chat_self_reply_text_color">@color/chat_self_reply_text_color_light</item>
|
||||
<item name="chat_other_reply_text_color">@color/chat_other_reply_text_color_light</item>
|
||||
|
||||
<item name="chat_read_receipt_text_color">@color/chat_read_receipt_text_color_light</item>
|
||||
<item name="chat_react_text_color">@color/chat_react_text_color_light</item>
|
||||
<item name="chat_react_other_text_color">@color/chat_react_other_text_color_light</item>
|
||||
<item name="chat_reply_detail_icon">@drawable/chat_reply_icon_light</item>
|
||||
<item name="chat_jump_recent_down_icon">@drawable/chat_ic_arrow_down_light</item>
|
||||
<item name="chat_jump_recent_up_icon">@drawable/chat_ic_arrow_up_light</item>
|
||||
|
||||
<item name="chat_pressed_bg_color">@color/chat_pressed_bg_color_light</item>
|
||||
</style>
|
||||
</resources>
|
||||
Reference in New Issue
Block a user