Git Product home page Git Product logo

imoji-android-sdk-1's Introduction

Imoji Android SDK

Android Studio Setup

  1. In your builds.gradle file, add the following dependencies:

     compile ('com.imojiapp:imoji-sdk:+@aar') {
         transitive=true
     }
    

Simple Integration

  • Initialize the Api in your Application's onCreate() method.
public class MyApplication extends Application {
 @Override
    public void onCreate() {
        super.onCreate();
        ImojiApi.init(this, "YOUR_CLIENT_ID_HERE", "YOUR_CLIENT_SECRET_HERE");
    }
}
  • Make an api call:
public class MyActivity extends Activity {
    @Override
    public void onCreate() {
        ImojiApi.with(this).getFeatured(new Callback<List<Imoji>>() {
            @Override
            public void onSuccess(List<Imoji> result) {
                //Bind the results to an adapter of sorts
            }
  
            @Override
            public void onFailure() {
                Log.d(LOG_TAG, "failure");
            }
        });
    }
  }  

or for a more proper production ready example:

public class MyActivity extends Activity {

    @Override
    public void onCreate() {
        ImojiApi.with(this).getFeatured(new FeatureCallback(this));
    }
    
    public static class FeatureCallback extends Callback<List<Imoji>>{
        
        private WeakReference<MyActivity> mMyActivity;
        
        public FeatureCallback(MyActivity activity){
            mMyActivity = new WeakReference(activity);
        }
        
        @Override
        public void onSuccess(List<Imoji> result) {
            MyActivity a = mMyActivity.get();
            if(a != null){
                //update the ui, bind to adapter, etc
            }
        }

        @Override
        public void onFailure() {
            Log.d(LOG_TAG, "failure");
        }
    }
  }  

Advanced Integration

  • You can configure the ImojiApi instance before initialization to set defaults or modify its behavior:
public class MyApplication extends Application {
 @Override
    public void onCreate() {
        super.onCreate();
        ImojiApi apiInstance = new ImojiApi.Builder().defaultResultCount(60).build();
        ImojiApi.init(this, "YOUR_CLIENT_ID_HERE", "YOUR_CLIENT_SECRET_HERE", apiInstance);
    }
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.