All Projects → takahirom → Wearhttp

takahirom / Wearhttp

This library provides a means to access the content on the Web easily from AndroidWear. Welcome pull request

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Wearhttp

Prey Bash Client
DEPRECATED - Project no longer supported, please consider using https://github.com/prey/prey-node-client instead
Stars: ✭ 882 (+1629.41%)
Mutual labels:  deprecated
Helm Registry
The helm registry to store and deliver charts (Deprecated since compass v2.9)
Stars: ✭ 36 (-29.41%)
Mutual labels:  deprecated
Winternote
[Deprecated] Semantic WYSIWYG editor.
Stars: ✭ 47 (-7.84%)
Mutual labels:  deprecated
Os Tmpdir
[DEPRECATED] Node.js os.tmpdir() ponyfill
Stars: ✭ 31 (-39.22%)
Mutual labels:  deprecated
Sarama Cluster
Cluster extensions for Sarama, the Go client library for Apache Kafka 0.9 [DEPRECATED]
Stars: ✭ 969 (+1800%)
Mutual labels:  deprecated
Multiple Scms Plugin
Stars: ✭ 39 (-23.53%)
Mutual labels:  deprecated
Requery
Store e run queries on database to help system manager of a Django website
Stars: ✭ 12 (-76.47%)
Mutual labels:  deprecated
Codeigniter Base Model
⛔️DEPRECATED CodeIgniter base CRUD model to remove repetition and increase productivity
Stars: ✭ 1,052 (+1962.75%)
Mutual labels:  deprecated
Libvirt
DEPRECATED Vanilla dockerized libvirt image, used as a base for kubevirt
Stars: ✭ 34 (-33.33%)
Mutual labels:  deprecated
Connect Python Sdk
Python client library for the Square Connect APIs
Stars: ✭ 45 (-11.76%)
Mutual labels:  deprecated
Finder colors
Set the color of files/folders for OSX Finder from the command line.
Stars: ✭ 31 (-39.22%)
Mutual labels:  deprecated
Ng2 Typeahead
Autocomplete component for Angular 2
Stars: ✭ 33 (-35.29%)
Mutual labels:  deprecated
Tmwa Client Data
DEPRECATED: The data used by the ManaPlus client for the tmwAthena server used by The Mana World Legacy. All further development will take place in the "client-data" repo.
Stars: ✭ 42 (-17.65%)
Mutual labels:  deprecated
Overwatch Js
Overwatch NodeJS API : Retrieve informations about heroes/players from Overwatch Official Website
Stars: ✭ 27 (-47.06%)
Mutual labels:  deprecated
Androidffmpeg
[DEPRECATED] FFmpeg build for android random architectures with example jni
Stars: ✭ 1,049 (+1956.86%)
Mutual labels:  deprecated
Startssl api
DEPRECATED A python/CLI API for some StartCom StartSSL functions
Stars: ✭ 14 (-72.55%)
Mutual labels:  deprecated
Strano
Strano is a web UI to run any tasks (but mostly Capistrano) from any of your git repo.
Stars: ✭ 36 (-29.41%)
Mutual labels:  deprecated
Puppet Staging
⛔️ Deprecated in favor of puppet-archive
Stars: ✭ 50 (-1.96%)
Mutual labels:  deprecated
Mricrogl
DEPRECATED development has moved to https://github.com/rordenlab/MRIcroGL12
Stars: ✭ 49 (-3.92%)
Mutual labels:  deprecated
Findbugs Plugin
Jenkins findbugs plugin
Stars: ✭ 43 (-15.69%)
Mutual labels:  deprecated

WearHttp

This library provides a means to access the content on the Web easily from AndroidWear.

Android Arsenal

Example

Code in AndroidWear app

new WearGetText(MainActivity.this).get("http://example.com/text.txt", 
  new WearGetText.WearGetCallBack() {
    @Override
    public void onGet(String contents) {
        mTextView.setText(contents);
    }

    @Override
    public void onFail(final Exception e) {
        mTextView.setText(e.getMessage());
    }
});
new WearGetImage(MainActivity.this).get("https://example.com/image.png", 
  new WearGetImage.WearGetCallBack() {
    @Override
    public void onGet(Bitmap image) {
        mImageView.setImageBitmap(image);
    }

    @Override
    public void onFail(final Exception e) {
        mTextView.setText(e.getMessage());
    }
});

AndroidWear screen shot

image

Usage

In Mobile and Wear module build.gradle:
You must be implemented in both the Mobile and Wear

dependencies {
    ...
    compile 'com.kogitune:wear-http:0.0.5'
}

Example Project

Directory

  • mobilesample
  • wearsample

Suggestion

WearHttp can use in WearSharedPreferences and simultaneous.

License

This project is released under the Apache License, Version 2.0.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].