JsonRequester


Source link: https://github.com/alirezaafkar/JsonRequester

JsonRequester

An Android library for sending fast and clean JSON request, using Volley

##Getting started

Dependency

dependencies {

  compile 'com.android.volley:volley:1.0.0'
  compile 'com.alirezaafkar:json-requester:1.1.4' 
}
 

Usage

Initialize Requester in your Application class in the onCreate() method.

@Override public void onCreate() {

  super.onCreate();

 Map<String, String> header = new HashMap<>();

  header.put("charset", "utf-8");

 String baseUrl = "http://example.com/api/";

 new Requester.Config(getApplicationContext()).baseUrl(baseUrl).header(header);
  
}

Create a requester

JsonObjectRequester mRequester; mRequester = new RequestBuilder(this)

 .requestCode(REQUEST_CODE)

 .contentType(ContentType.TYPE_JSON) //or ContentType.TYPE_FORM

 .showError(true) //Show error with toast on Network or Server error

 .shouldCache(true)

 .priority(Request.Priority.NORMAL)

 .allowNullResponse(true)

 .tag(REQUEST_TAG)

 .addToHeader("token", user_token)

 .buildObjectRequester(listener);
 //or .buildArrayRequester(listener);

Create a listener

private class JsonObjectListener extends Response.SimpleObjectResponse {

@Override

public void onResponse(int requestCode, @Nullable JSONObject jsonObject) {

  //Ok

}

 @Override

public void onErrorResponse(int requestCode, VolleyError volleyError, @Nullable JSONObject errorObject) {

  //Error (Not server or network error)

}

 @Override

public void onFinishResponse(int requestCode, VolleyError volleyError, String message) {

  //Network or Server error

}

 @Override

public void onRequestStart(int requestCode) {

  //Show loading or disable button

}

 @Override

public void onRequestFinish(int requestCode) {

  //Hide loading or enable button

}
 
}

Request

mRequester.request(Methods.GET, url);
 mRequester.request(Methods.POST, url, body);
 // application/x-www-form-urlencoded mRequester.request(Methods.POST, url, json);
 // application/json

Callbacks

Set callback to null on destroy

Activity

@Override
  protected void onDestroy() {

super.onDestroy();

if (isFinishing()) {

 mRequester.setCallback(null);

}

  
}

Fragment

@Override
  public void onDetach() {

super.onDetach();

if (isRemoving() || getActivity().isFinishing()) {

 mRequester.setCallback(null);

}

  
}

Nested Fragment

if (getParentFragment().isRemoving() ||

  isRemoving() || getActivity().isFinishing()) {

 mRequester.setCallback(null);
 
}

###Override strings

<string name="parsing_error">Parsing error</string> <string name="server_error">Server error</string> <string name="network_error">Check your connection</string> <string name="no_connection_error">No Connection</string> <string name="timeout_error">Timeout error</string>

#Licence

Copyright 2015 Alireza Afkar  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

Android Toasts are amazing, but they have some major drawbacks:

  • You cannot control when they show up as well as their duration. Other apps can enqueue toasts that will delay yours from showing up.
  • They break context: they remain on screen when the user switches to other activities.
  • The API is error prone. Don't forget show()!

FrenchToast gives you absolute control over your app Toasts. It does so by duplicating the internals of Android Toasts and giving you access.

This is a simple Java wrapper around all the api calls used to login, and retrieve and set device attributes.

A beautiful leanback port for Smartphones and Tablets.

WaveView for android.

Show your apps key features in a cool way.

DexHunter aims at unpacking hardened dex file automatically.

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