blob: 8d1a2fc3a3b1334c0c57afa2120a898df720bc76 [file] [log] [blame]
// dummy notifications for demos
// for anandx@google.com by dsandler@google.com
package com.android.example.notificationshowcase;
import android.app.Activity;
import android.app.NotificationManager;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
public class NotificationShowcaseActivity extends Activity {
private static final String TAG = "NotificationShowcase";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
public void doPost(View v) {
Intent intent = new Intent(NotificationService.ACTION_CREATE);
intent.setComponent(new ComponentName(this, NotificationService.class));
startService(intent);
}
public void doRemove(View v) {
Intent intent = new Intent(NotificationService.ACTION_DESTROY);
intent.setComponent(new ComponentName(this, NotificationService.class));
startService(intent);
}
public void doPrefs(View v) {
Intent intent = new Intent();
intent.setComponent(new ComponentName(this, SettingsActivity.class));
startActivity(intent);
}
}