Is it possible that my Wear application sets an alarm on my watch that is shown above all notifications in fullscreen mode, e.g. like the stock clock alarm does?
Asked
Active
Viewed 190 times
2 Answers
0
Send Message using Message API from wear to mobile.
OnMessageReceive()
(on the phone) open Activity (fullscreen) that you want. Using:
startActivity(new Intent(this, YourFullscreenActivityHere.class););

Michał Tajchert
- 10,333
- 4
- 30
- 47
-
Damn, i got a typo in my question! I wanted the wear app to set a alarm on the watch, not the phone. However i solved it by using the AlarmManager! Thanks anyway! – Juke Feb 19 '15 at 22:34
-
I have to wait for 12 hours before I can do that. – Juke Feb 20 '15 at 09:32