diff --git a/README-en.md b/README-en.md
index 1549f50..57abf99 100644
--- a/README-en.md
+++ b/README-en.md
@@ -11,6 +11,15 @@
![](./intro_img/4.png)
+### V1.1.2 update instructions(2018-03-20)
+
+- Add attributes to modify unread font colors and background
+
+- Add attributes to modify prompt text font colors and background
+
+- Add attributes to modify prompt point background
+
+
### V1.1.1 update instructions(2018-02-27)
- Repair must be set up ViewPager problems, can be modified to set or not set;
@@ -76,9 +85,20 @@
+
+
+
+
+
+
+
+
+
+
+
@@ -220,6 +240,32 @@ When unread more than 99, it shows 99+;
mBottomBarLayout.hideNotify(2);//Hide the third page shows the tips of the little red dot
mBottomBarLayout.hideMsg(3);//Hide the text displayed on the fourth tab
+#### Set unread font color
+
+ app:unreadTextColor="@color/unreadTextColor"
+
+#### Set the unread background
+
+ app:unreadTextBg="@drawable/shape_unread"
+
+Drawable is written as follows:
+
+
+
+
+
+
+
+
+#### Set prompt text font color, background
+
+ app:msgTextColor="@color/msgTextColor"
+ app:msgTextBg="@drawable/shape_msg"
+
+#### Set prompt point background
+
+ app:notifyPointBg="@drawable/shape_notify_point"
+
#### **How to import**
diff --git a/README.md b/README.md
index 762df44..ed4c9e1 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,14 @@
![](./intro_img/4.png)
+### V1.1.2版本更新说明(2018-03-20)
+
+- 添加修改未读数字体颜色和背景的属性
+
+- 添加修改提示文字字体颜色和背景的属性
+
+- 添加修改提示点背景的属性
+
### V1.1.1版本更新说明(2018-02-27)
- 修复一定要设置ViewPager的问题,修改成可设置或不设置;
@@ -40,6 +48,7 @@
+
@@ -48,22 +57,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -204,6 +231,33 @@
mBottomBarLayout.hideNotify(2);//隐藏第三个页签显示提示的小红点
mBottomBarLayout.hideMsg(3);//隐藏第四个页签显示的提示文字
+
+#### 设置未读数字体颜色
+
+ app:unreadTextColor="@color/unreadTextColor"
+
+#### 设置未读数背景
+
+ app:unreadTextBg="@drawable/shape_unread"
+
+drawable的编写如下:
+
+
+
+
+
+
+
+
+#### 设置提示文字字体颜色、背景
+
+ app:msgTextColor="@color/msgTextColor"
+ app:msgTextBg="@drawable/shape_msg"
+
+####设置提示点背景
+
+ app:notifyPointBg="@drawable/shape_notify_point"
+
#### BottomBarItem的介绍
BottomBarItem继承于LinearLayout,其子View有显示图标的ImageView和展示文字的TextView,分别可以通过getImageView()和getTextView()方法获取到对应的子控件。github上不少底部导航栏的控件都没能获取到对应的子控件,所以在需要对子控件进行操作的时候极不方便,有一些的思路并不是用ImageView和TextView,而是用绘制的,所以也不能获取到对应的显示图标的控件或展示文字的控件,造成无法获取到该控件,无法进行一些业务上的操作,比如类似今日头条的底部的首页,点击首页的页签,会更换成加载中的图标,执行旋转动画,BottomBarLayout可以轻松地做到这个需求。
@@ -288,7 +342,7 @@
打开app的module中的build.gradle,在dependencies{}中,添加依赖,如下:
dependencies {
- compile 'com.github.chaychan:BottomBarLayout:1.1.1' //建议使用最新版本
+ compile 'com.github.chaychan:BottomBarLayout:1.1.2' //建议使用最新版本
}
diff --git a/demo/src/main/res/values/colors.xml b/demo/src/main/res/values/colors.xml
index 0b13d33..adbeb15 100644
--- a/demo/src/main/res/values/colors.xml
+++ b/demo/src/main/res/values/colors.xml
@@ -9,4 +9,5 @@
#D33D3C
#00ff00
+ #00ff00