Android的通知图标模板?

时间:2011-03-21 17:46:08

标签: android icons notifications

有没有关于如何设计一个好的图标作为Android应用程序中的通知放入状态栏的教程? 理想情况下,我正在寻找一个我可以轻松修改的模板或图标。我不是设计师。 我需要笑脸状态栏图标。

4 个答案:

答案 0 :(得分:5)

您可以从buzzbox sdk资源页面下载图标:

http://hub.buzzbox.com/android-sdk/notification-icons

还有一个可以下载和修改的photoshop文件。

Android官方模板包中还有一个简单的状态栏模板图标

http://developer.android.com/guide/practices/ui_guidelines/icon_design.html#templatespack

答案 1 :(得分:3)

以下是来自Android开发者网页的信息:http://developer.android.com/guide/practices/ui_guidelines/icon_design_status_bar.html

这也包含指向icon template pack

的链接

答案 2 :(得分:1)

查看Android Asset Studio!它是创建大量Android图标的绝佳工具,包括通知图标。

答案 3 :(得分:0)

Notification notification = new Notification(R.drawable.asterisk_sign, text, System.currentTimeMillis());
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, MainActivity.class), 0); //this is how we will launch an Activity when the user clicks the notification
notification.setLatestEventInfo(this, getText(R.string.app_name), text, contentIntent);
mNM.notify(R.string.minutemaid_service_started, notification);  //send the notification to the system, to be displayed in the notification bar

这是一个如何在通知栏中发出通知的示例,该通知在选中时启动活动。