Skip to content

Commit

Permalink
Added grey notification icon.
Browse files Browse the repository at this point in the history
  • Loading branch information
kueda committed Dec 26, 2011
1 parent b1aef54 commit d47a379
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 9 deletions.
17 changes: 9 additions & 8 deletions gen/org/inaturalist/android/R.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ public static final class drawable {
public static final int ic_launcher=0x7f020000;
public static final int ic_maps_indicator_current_position=0x7f020001;
public static final int ic_right_angle_quotation_mark_ornament=0x7f020002;
public static final int logo_text=0x7f020003;
public static final int mm_34_dark_magenta=0x7f020004;
public static final int mm_34_dodger_blue=0x7f020005;
public static final int mm_34_golden_rod=0x7f020006;
public static final int mm_34_hot_pink=0x7f020007;
public static final int mm_34_inat_green=0x7f020008;
public static final int mm_34_orange_red=0x7f020009;
public static final int mm_34_unknown=0x7f02000a;
public static final int ic_stat_inaturalist=0x7f020003;
public static final int logo_text=0x7f020004;
public static final int mm_34_dark_magenta=0x7f020005;
public static final int mm_34_dodger_blue=0x7f020006;
public static final int mm_34_golden_rod=0x7f020007;
public static final int mm_34_hot_pink=0x7f020008;
public static final int mm_34_inat_green=0x7f020009;
public static final int mm_34_orange_red=0x7f02000a;
public static final int mm_34_unknown=0x7f02000b;
}
public static final class id {
public static final int accuracy=0x7f060017;
Expand Down
Binary file added res/drawable-hdpi-v11/ic_stat_inaturalist.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable-hdpi/ic_stat_inaturalist.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable-ldpi-v11/ic_stat_inaturalist.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable-ldpi/ic_stat_inaturalist.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable-mdpi-v11/ic_stat_inaturalist.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable-mdpi/ic_stat_inaturalist.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable-xhdpi-v11/ic_stat_inaturalist.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/drawable-xhdpi/ic_stat_inaturalist.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/org/inaturalist/android/INaturalistApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public void notify(Integer id, String title, String content, String ticker, Pend
if (mNotificationManager == null) {
mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
}
Notification notification = new Notification(R.drawable.ic_launcher, ticker, System.currentTimeMillis());
Notification notification = new Notification(R.drawable.ic_stat_inaturalist, ticker, System.currentTimeMillis());
notification.setLatestEventInfo(getApplicationContext(), title, content, pendingIntent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
mNotificationManager.notify(id, notification);
Expand Down

0 comments on commit d47a379

Please sign in to comment.