aboutsummaryrefslogtreecommitdiff
path: root/NotificationShowcase/src/com/android/example/notificationshowcase/NotificationShowcaseActivity.java
blob: fcd9ccc2f1d625c77d28c8199298c7015e6fac48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// dummy notifications for demos
// for anandx@google.com by dsandler@google.com

package com.android.example.notificationshowcase;

import java.util.ArrayList;

import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.view.View;

public class NotificationShowcaseActivity extends Activity {
    private static final int NOTIFICATION_ID = 31338;

    private static final boolean FIRE_AND_FORGET = true;
    
    private ArrayList<Notification> mNotifications = new ArrayList<Notification>();
    
    NotificationManager mNoMa;
    int mLargeIconWidth, mLargeIconHeight;
    
    private Bitmap getBitmap(int resId) {
        Drawable d = getResources().getDrawable(resId);
        Bitmap b = Bitmap.createBitmap(mLargeIconWidth, mLargeIconHeight, Bitmap.Config.ARGB_8888);
        Canvas c = new Canvas(b);
        d.setBounds(0, 0, mLargeIconWidth, mLargeIconHeight);
        d.draw(c);
        return b;
    }
    
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        mLargeIconWidth = (int) getResources().getDimension(android.R.dimen.notification_large_icon_width);
        mLargeIconHeight = (int) getResources().getDimension(android.R.dimen.notification_large_icon_height);
        
        mNoMa = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        
        
        // these will appear in the shade in reverse post order, so adjust the order here to taste
        
        // none of them does anything; if you want them to auto-destruct when tapped, add a 
        //   .setAutoCancel(true)
        // if you want to launch an app, you need to do more work, but then again it won't launch the 
        // right thing anyway because these notifications are just dummies. :) 
        
        mNotifications.add(new Notification.Builder(this)
            .setContentTitle("Larry Page")
            .setContentText("hey, free nachos at MoMA!")
            .setLargeIcon(getBitmap(R.drawable.page_hed))
            .setSmallIcon(android.R.drawable.stat_notify_chat)
            .setPriority(Notification.PRIORITY_HIGH)
            .setNumber(2)
            .getNotification());

        mNotifications.add(new Notification.Builder(this)
        .setContentTitle("Andy Rubin")
        .setContentText("Drinks tonight?")
        .setTicker("Andy Rubin: Drinks tonight?")
        .setLargeIcon(getBitmap(R.drawable.arubin_hed))
        .setSmallIcon(R.drawable.stat_notify_sms)
        .setPriority(Notification.PRIORITY_MAX)
        .getNotification());

        mNotifications.add(new Notification.Builder(this)
        .setContentTitle("J Planning")
        .setContentText("The Botcave")
        .setSmallIcon(R.drawable.stat_notify_calendar)
        .setContentInfo("7PM")
        .getNotification());

        // Note: this may conflict with real email notifications
        mNotifications.add(new Notification.Builder(this)
        .setContentTitle("24 new messages")
        .setContentText("test.hugo2@gmail.com")
        .setSmallIcon(R.drawable.stat_notify_email)
        .getNotification());

        // No idea what this would really look like since the app is in flux
        mNotifications.add(new Notification.Builder(this)
        .setContentTitle("Google+")
        .setContentText("Kanye West has added you to his circles")
        .setSmallIcon(R.drawable.googleplus_icon)
        .setPriority(Notification.PRIORITY_LOW)
        .getNotification());
        
        mNotifications.add(new Notification.Builder(this)
        .setContentTitle("Twitter")
        .setContentText("New mentions")
        .setSmallIcon(R.drawable.twitter_icon)
        .setNumber(15)
        .setPriority(Notification.PRIORITY_LOW)
        .getNotification());

        if (FIRE_AND_FORGET) {
            doPost(null);
            finish();
        }
    }
    
    public void doPost(View v) {
        for (int i=0; i<mNotifications.size(); i++) {
            mNoMa.notify(NOTIFICATION_ID + i, mNotifications.get(i));
        }
    }
    
    public void doRemove(View v) {
        for (int i=0; i<mNotifications.size(); i++) {
            mNoMa.cancel(NOTIFICATION_ID + i);
        }
    }
}