Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
appinventor-sources
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
appinventor-sources
Commits
0b6dc708
Commit
0b6dc708
authored
Oct 30, 2012
by
halatmit
Committed by
Gerrit Review System
Oct 31, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made notifier font a little smaller and not boldface.
Change-Id: Ib35cf2db6e9de252a57655966f2c5bc25337df90
parent
1f3a16fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
appinventor/components/src/com/google/appinventor/components/runtime/Notifier.java
...c/com/google/appinventor/components/runtime/Notifier.java
+2
-2
No files found.
appinventor/components/src/com/google/appinventor/components/runtime/Notifier.java
View file @
0b6dc708
...
@@ -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
(
3
0
);
textView
.
setTextSize
(
2
0
);
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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment