Commit 0b6dc708 authored by halatmit's avatar halatmit Committed by Gerrit Review System

Made notifier font a little smaller and not boldface.

Change-Id: Ib35cf2db6e9de252a57655966f2c5bc25337df90
parent 1f3a16fc
...@@ -217,8 +217,8 @@ public final class Notifier extends AndroidNonvisibleComponent implements Compon ...@@ -217,8 +217,8 @@ public final class Notifier extends AndroidNonvisibleComponent implements Compon
TextView textView = new TextView(activity); TextView textView = new TextView(activity);
textView.setBackgroundColor(Color.DKGRAY); textView.setBackgroundColor(Color.DKGRAY);
textView.setTextColor(Color.WHITE); textView.setTextColor(Color.WHITE);
textView.setTextSize(30); textView.setTextSize(20);
Typeface typeface = Typeface.create("serif", Typeface.BOLD); Typeface typeface = Typeface.create("serif", Typeface.NORMAL);
textView.setTypeface(typeface); textView.setTypeface(typeface);
textView.setPadding(10, 10, 10, 10); textView.setPadding(10, 10, 10, 10);
textView.setText(message); textView.setText(message);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment