Skip to content

Commit 2a84f0a

Browse files
committed
顶部按钮文字颜色默认调整为青色风格
1 parent adf41e9 commit 2a84f0a

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

library/Common/src/main/java/cn/qqtheme/framework/popup/ConfirmPopup.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
public abstract class ConfirmPopup<V extends View> extends BasicPopup<View> {
2626
protected boolean topLineVisible = true;
27-
protected int topLineColor = 0xFFDDDDDD;
27+
protected int topLineColor = 0xFF33B5E5;
2828
protected int topLineHeightPixels = 1;//px
2929
protected int topBackgroundColor = Color.WHITE;
3030
protected int topHeight = 40;//dp
@@ -33,8 +33,8 @@ public abstract class ConfirmPopup<V extends View> extends BasicPopup<View> {
3333
protected CharSequence cancelText = "";
3434
protected CharSequence submitText = "";
3535
protected CharSequence titleText = "";
36-
protected int cancelTextColor = Color.BLACK;
37-
protected int submitTextColor = Color.BLACK;
36+
protected int cancelTextColor = 0xFF33B5E5;
37+
protected int submitTextColor = 0xFF33B5E5;
3838
protected int titleTextColor = Color.BLACK;
3939
protected int pressedTextColor = 0XFF0288CE;
4040
protected int cancelTextSize = 0;

library/WheelPicker/src/main/java/cn/qqtheme/framework/widget/WheelView.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
/**
4040
* 3D滚轮控件,参阅:http://blog.csdn.net/qq_22393017/article/details/59488906
41-
* <p/>
41+
* <p>
4242
* Author:李玉江[QQ:1032694760]
4343
* DateTime:2015/12/15 09:45 基于ScrollView,参见https://github.com/wangjiegulu/WheelView
4444
* DateTime:2017/01/07 21:37 基于ListView,参见https://github.com/venshine/WheelView
@@ -251,7 +251,6 @@ public final void setGravity(int gravity) {
251251
this.gravity = gravity;
252252
}
253253

254-
255254
public void setTextColor(@ColorInt int colorNormal, @ColorInt int colorFocus) {
256255
this.textColorOuter = colorNormal;
257256
this.textColorCenter = colorFocus;

0 commit comments

Comments
 (0)