I'm using the .NET Google Mirror API library for all of this.
I start by inserting a new timeline item which includes the built-in Delete menu item plus a custom menu item:
TimelineItem item = new TimelineItem() {
Text = "Test Item",
Notification = new NotificationConfig() { Level = "DEFAULT" },
MenuItems = new List<MenuItem>() {
new MenuItem() { Action = "DELETE" },
new MenuItem() {
Action = "CUSTOM",
Id = "report",
Values = new List<MenuValue>() { DisplayName = "Report" }
}
}
}
I'm also subscribed to timeline notifications, with no Operation specified (so it should receive all operations). When I select the 'Report' menu item on my Glass, my subscription does not receive a notification. When I select the 'Delete' menu item on my Glass, my subscription gets a notification for the DELETE, which also includes both the Delete and the Report actions in the UserActions field.
Is there something special I need to do to receive notifications for the custom menu item?
If you are getting built-in menu events such as DELETE, but you are not getting Custom menu events, then your only problem should be handling custom events, not getting them.
To test it;
This is a
JAVA
code for handling built-in and custom notifications, I guess you can write similar code with.NET
. Logic is same:Adding custom menu item:
Handling custom menu item: