Code for notification:
mNotificationManager =
(NotificationManager)getSystemService(NOTIFICATION_SERVICE);
final Notification notifyDetails =
new Notification(R.drawable.ic_launcher,"New Alert, Click Me!",System.currentTimeMillis());
Context context = getApplicationContext();
notifyDetails.
CharSequence contentTitle = "Notification Details...";
CharSequence contentText = "Browse Android Official Site by clicking me";
Intent notifyIntent = new Intent(android.content.Intent.ACTION_VIEW,Uri.parse("http://www.android.com"));
PendingIntent intent1 =
PendingIntent.getActivity(this, 0,
notifyIntent, android.content.Intent.FLAG_ACTIVITY_NEW_TASK);
notifyDetails.setLatestEventInfo(context, contentTitle, contentText, intent1);
mNotificationManager.notify(SIMPLE_NOTFICATION_ID, notifyDetails);
My notification works fine, what I want to happen is the screen brightness to increase to a certain value when the notification pops up.
I used Eclipse's auto complete feature to find the right function, but none work. I also searched quite a bit, no luck.
How do I solve this?