Michał Tajchert
Michał Tajchert

Reputation: 10383

Smaller notification on the watchface

How in the watchface set attribute (a flag?) to make notification appear in "small notification mode" - as below:

enter image description here

Instead of such:

enter image description here

Upvotes: 0

Views: 282

Answers (1)

Michał Tajchert
Michał Tajchert

Reputation: 10383

It is possible since release of new Android Wear Watchface API. To do that in our Activity that extends CanvasWatchFaceService on onCreate() we call:

 setWatchFaceStyle(new WatchFaceStyle.Builder(AnalogWatchFaceService.this)
                .setCardPeekMode(WatchFaceStyle.PEEK_MODE_SHORT)
                ...
                .build());

And setCardPeekMode(WatchFaceStyle.PEEK_MODE_SHORT) is a key there. It also can show a bigger peek card - WatchFaceStyle.PEEK_MODE_VARIABLE.

Upvotes: 1

Related Questions