Giter Site home page Giter Site logo

volleyball's Introduction

VolleyBall

It's a networking library. You can call RESTful APIs in your project by using this.

FusedBulb

Gradle

dependencies {
    ...
   compile 'com.ankuryadav.lib:volleylib:1.0.3'
}

Maven

dependencies {
    ...
   <dependency>
       <groupId>com.ankuryadav.lib</groupId>
       <artifactId>volleylib</artifactId>
       <version>1.0.3</version>
       <type>pom</type>
   </dependency>
}

Below are the simple steps by which you can integrate VolleyBall library in your project.

  • Step 1-->> Add "VolleyResponseListener" in your main class or fragment. By implementing this you will get below two methods.
 @Override
    public void volleyResponse(String response, String type) {
        Log.w("VolleyBall response",response+"");
    }

    @Override
    public void responseError(String volleyError) {
        Log.w("VolleyBall error",volleyError+"");
    }
  • Step 2-->> Take a refrence of "VolleyRequest" in an activity
public class MainActivity extends AppCompatActivity{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        VolleyRequest volleyRequest=new VolleyRequest(this);
    }
}

Take a refrence of "VolleyRequest" in a fragment

public class DemoFragment extends Fragment{
   
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    View v=inflater.inflate(R.layout.demo_fragment, container, false);
       
    VolleyRequest volleyRequest=new VolleyRequest(this);
    return v;
   
  }
}
  • REST call
 VolleyRequest volleyRequest=new VolleyRequest(this);
        Map<String, String> params = new Hashtable<String, String>();
        params.put("email",   "[email protected]");
        params.put("password", "123456");
        
 volleyRequest.stringPostCall("http://xyz.com/app/json/login?",params,"LOGIN");

Developed By

Ankur Yadav- [email protected]

volleyball's People

Contributors

ankuryadav7 avatar

Watchers

James Cloos avatar

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.