diff options
author | Joe Malin <jmalin@google.com> | 2013-02-25 10:20:29 -0800 |
---|---|---|
committer | Joe Malin <jmalin@google.com> | 2013-02-25 10:20:29 -0800 |
commit | 43f81181bcfed0a97bf39175b690526c047ee0fb (patch) | |
tree | 9e3473885b474fe219266c502b25554385ea7cf9 /docs | |
parent | f15b0908a773850007c0d0b6de54b1dc008abf6f (diff) | |
download | frameworks_base-43f81181bcfed0a97bf39175b690526c047ee0fb.zip frameworks_base-43f81181bcfed0a97bf39175b690526c047ee0fb.tar.gz frameworks_base-43f81181bcfed0a97bf39175b690526c047ee0fb.tar.bz2 |
Bug 8261430: Typo in Notifications
Change-Id: Ia0de6eec870f75cb31e082fba5a8b6764d6e4810
Diffstat (limited to 'docs')
-rw-r--r-- | docs/html/guide/topics/ui/notifiers/notifications.jd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/guide/topics/ui/notifiers/notifications.jd b/docs/html/guide/topics/ui/notifiers/notifications.jd index 4a4b1d5..05ec279 100644 --- a/docs/html/guide/topics/ui/notifiers/notifications.jd +++ b/docs/html/guide/topics/ui/notifiers/notifications.jd @@ -355,7 +355,7 @@ NotificationCompat.InboxStyle inboxStyle = new NotificationCompat.InboxStyle(); String[] events = new String[6]; // Sets a title for the Inbox style big view -inboxStyle.SetBigContentTitle("Event tracker details:"); +inboxStyle.setBigContentTitle("Event tracker details:"); ... // Moves events into the big view for (int i=0; i < events.length; i++) { |