Skip to content

Commit b8760f5

Browse files
committed
Change toolbar text color
1 parent 6e5ee54 commit b8760f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor-view/src/main/java/com/jecelyin/editor/v2/widget/EditorToolbar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ private void init(Context context) {
6262
Resources.Theme theme = context.getTheme();
6363
theme.resolveAttribute(android.R.attr.textColorPrimary, typedValue, true);
6464
TypedArray arr = context.obtainStyledAttributes(typedValue.data, new int[]{
65-
android.R.attr.textColorSecondary});
65+
android.R.attr.textColorPrimary});
6666
int textColor = arr.getColor(0, Color.WHITE);
6767
arr.recycle();
6868

0 commit comments

Comments
 (0)