How to publish and reveal Static Card from Glass GDK?

Viewed 432

I updated Glass to XE12 today. I'm fascinated by the addition of Static Cards API into GDK.

I was able to publish Static Card, but it doesn't focus automatically. User has to scroll to it.

Am I doing something wrong, or this is a limitation of GDK by now?

Card c = new Card(MyService.this);
c.setText(test1);
c.setFootnote(test2);
long lastCard = mTimelineManager.insert(c);
1 Answers
Related