Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to publish and reveal Static Card from Glass GDK?

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);
like image 972
Ostap Andrusiv Avatar asked Nov 02 '22 08:11

Ostap Andrusiv


1 Answers

Static cards currently only support the kind of silent background publishing that you are seeing now. Please file a feature request in our issue tracker if you would like to see more capabilities like the ones you're describing.

like image 76
Tony Allevato Avatar answered Jan 04 '23 14:01

Tony Allevato