0

アプリのロゴを通知バーに配置するにはどうすればよいですか? 私はそれをしている多くのアプリを見てきました。

たとえば、左のこの 1 つ:

スクリーンショット

ありがとう。

4

1 に答える 1

1

どうぞ

NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);


private void notification(String message){

    int icon = R.drawable.ic_launcher;
    CharSequence ticket = message;
    long when = System.currentTimeMillis();
    Notification notification = new Notification(icon, ticket, when);
    notification.flags |= Notification.FLAG_AUTO_CANCEL;
    CharSequence contentTitle = "Buzz Off";
    CharSequence contentText = message;
    Intent intent = new Intent(this, HomeScreen.class);
    PendingIntent activity = PendingIntent.getActivity(this, 0, intent, 0);
    notification.setLatestEventInfo(this, contentTitle, contentText, activity);
    nm.notify(layout, notification);
    buzzOff = true;
}
于 2012-06-03T08:29:34.670 に答える