Skip to content
This repository has been archived by the owner on Feb 8, 2022. It is now read-only.

Send Bitmaps

Florent CHAMPIGNY edited this page Apr 24, 2015 · 1 revision

##Send Bitmap

In your smartphone service

    @Override
    public void onMessageReceived(MessageEvent messageEvent) {
        super.onMessageReceived(messageEvent);
        DaVinciDaemon.with(getApplicationContext()).handleMessage(messageEvent);
        ...
    }

##Preload Bitmap

Send image to wear

DaVinciDaemon.with(getApplicationContext()).load("http://i.imgur.com/o3ELrbX.jpg").send();

or with "/image/0" path

DaVinciDaemon.with(getApplicationContext()).load("http://i.imgur.com/o3ELrbX.jpg").into("/image/0");
Clone this wiki locally