I have a simple glass application Live Card which displays fine when debugging on Google Glass, however if I add a TableLayout (with or without rows) and debug on glass, I get the sad cloud. The card uses no dependent resources like network connectivity.
Google Glass GDK view error, sad cloud TableView
68 views Asked by Joseph Slawsky At
1
As documented here,
TableLayout
is not one of the types of views/widgets that are supported byRemoteViews
. (This is a restriction in the Android framework and not Glass-specific.) WheneverRemoteViews
fail to inflate properly, it is manifested as this "sad cloud" image.You may want to consider redesigning your layout to use nested
LinearLayout
s instead in order to get around this restriction.