Hello,

In may application I wan't to invoke Alarm Clock Settings. I'm doing
it in naive way

Intent intent = new Intent();
intent.setClassName("com.android.alarmclock",
"com.android.alarmclock.AlarmClock");
startActivity(intent);

This works in almost all phones. But I got a few exception reports
with ActivityNotFoundException.

I fixed it in the way that I'm catching ANFE and displaying message to
user that Standard Android Alarm Clock is Not Presented.

My questions are:
- is there better way how to invoke Alarm Clock settings?
- does anybody has any idea what roms don't contain standard
AlarmClock and what to invoke instead?

Thanks
Tom

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to