android - Smaller notification on the watchface -
how in watchface set attribute (a flag?) make notification appear in "small notification mode" - below:
instead of such:
it possible since release of new android wear watchface api. in our activity extends canvaswatchfaceservice
on oncreate()
call:
setwatchfacestyle(new watchfacestyle.builder(analogwatchfaceservice.this) .setcardpeekmode(watchfacestyle.peek_mode_short) ... .build());
and setcardpeekmode(watchfacestyle.peek_mode_short) key there. can show bigger peek card - watchfacestyle.peek_mode_variable
.
Comments
Post a Comment