DaVinci


Source link: https://github.com/florent37/DaVinci

DaVinci

DaVinci is an image downloading and caching library for Android Wear

Usage

Use DaVinci from your SmartWatch app

DaVinci.with(context).load("/image/0").into(imageView);
 DaVinci.with(context).load("http://i.imgur.com/o3ELrbX.jpg").into(imageView);

Into an imageview

DaVinci.with(context).load("/image/0").into(imageView);

Into a FragmentGridPagerAdapter

@Override public Drawable getBackgroundForRow(final int row) {

  return DaVinci.with(context).load("/image/" + row).into(this, row);
 
}

Into a CallBack

DaVinci.with(context).load("http://i.imgur.com/o3ELrbX.jpg").into(new DaVinci.Callback() {

 @Override

 public void onBitmapLoaded(String path, Bitmap bitmap) {

  
}
 
}
);

By default, the asset name used for the bitmap is "image", you can modify this

DaVinci.with(context).load("/image/0").setImageAssetName("myImage").into(imageView);

Send Bitmaps

In your smartphone service

 @Override
  public void onMessageReceived(MessageEvent messageEvent) {

super.onMessageReceived(messageEvent);

DaVinciDaemon.with(getApplicationContext()).handleMessage(messageEvent);

...
  
}

Preload Bitmaps

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");

Image Transformation

You can specify custom transformations on your Bitmaps

public class ResizeTransformation implements Transformation {

  private int targetWidth;

public ResizeTransformation(int width) {

this.targetWidth = width;
  
}

@Override
  public Bitmap transform(Bitmap source) {

double aspectRatio = (double) source.getHeight() / (double) source.getWidth();

int targetHeight = (int) (targetWidth * aspectRatio);

Bitmap result = Bitmap.createScaledBitmap(source, targetWidth, targetHeight, false);

if (result != source) {

 // Same bitmap is returned if sizes are the same

 source.recycle();

}

return result;
  
}

@Override
  public String key() {

return "ResizeTransformation"+targetWidth;
  
}
 
}

Pass an instance of this class to the transform method

DaVinci.with(context).load(url).transform(new ResizeTransformation(300)).into(imageView);

Prodvided Transformations :

Blur

DaVinci.with(context).load(url).transform(new BlurTransformation()).into(imageView);

Resizing

DaVinci.with(context).load(url).transform(new ResizeTransformation(maxWidth)).into(imageView);

Download

In your wear module

compile ('com.github.florent37:davinci:1.0.3@aar'){

  transitive = true 
}

In your smartphone module

compile ('com.github.florent37:davincidaemon:1.0.3@aar'){

transitive = true 
}

Don't forget to add WRITE_EXTERNAL_STORAGE in your Wear AndroidManifest.xml

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

TODO

  • Customize bitmap resizing (actually : width=300px)
  • Enabling multiples transformations
  • Apply transformations on Smartphone then send them to Wear

Community

Looking for contributors, feel free to fork !

Wear

If you want to learn wear development : http://tutos-android-france.com/developper-une-application-pour-les-montres-android-wear/.

Dependencies

Changelog

1.0.2

  • Bitmaps are now saved as PNG to preserve transparency

Credits

Author: Florent Champigny www.florentchampigny.com/

Pictures by Logan Bourgouin

License

Copyright 2015 florent37, Inc.  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

Bounce Scroller is a library for Android platform that provides iOS-like bounce scroller effect and can also be used as pull-to-refresh.

Features:

  • Support all ViewGroups and almost all Views (except self-scrollable TextView).
  • Bounce-effect can be added to header and footer.
  • No need to specify custom wrappers.

Couchbase-Lite-Android is a lightweight embedded NoSQL database engine for Android with the built-in ability to sync to Couchbase Server on the backend.

It is the Android port of Couchbase Lite iOS.

Android Widget to show circular counters.

Grocery Sync for Couchbase Lite Android.

An example app that uses the Couchbase Lite Android mobile database framework.

Easy Rating Dialog provides a simple way to display an alert dialog for rating app.

Default conditions to show:

  • User opened the app more than 5 times
  • User opened the app after 7 days of first opening.

Helper library about Showing and stopping a progress in the ActionBar.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes