Merge pull request #482 from pipop62/pullreq

Clearer apps name text color
This commit is contained in:
Marcel Bokhorst 2016-10-16 08:06:08 +02:00 committed by GitHub
commit b985d22738
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ public class AdapterRule extends RecyclerView.Adapter<AdapterRule.ViewHolder> im
else
colorChanged = Color.argb(128, Color.red(Color.LTGRAY), Color.green(Color.LTGRAY), Color.blue(Color.LTGRAY));
TypedArray ta = context.getTheme().obtainStyledAttributes(new int[]{android.R.attr.textColorSecondary});
TypedArray ta = context.getTheme().obtainStyledAttributes(new int[]{android.R.attr.textColorPrimary});
try {
colorText = ta.getColor(0, 0);
} finally {